Move MatchPattern to its own header and the base namespace.
[chromium-blink-merge.git] / remoting / test / remote_application_details.h
blob711b2106cce2b8f26893ab22af3220f1d2df1b7f
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef REMOTING_TEST_REMOTE_APPLICATION_DETAILS_H_
6 #define REMOTING_TEST_REMOTE_APPLICATION_DETAILS_H_
8 #include <string>
10 namespace remoting {
11 namespace test {
13 // Container for application details used for testing.
14 struct RemoteApplicationDetails {
15 RemoteApplicationDetails(const std::string& app_id,
16 const std::string& window_title)
17 : application_id(app_id), main_window_title(window_title) {}
19 std::string application_id;
20 std::string main_window_title;
23 } // namespace test
24 } // namespace remoting
26 #endif // REMOTING_TEST_REMOTE_APPLICATION_DETAILS_H_