joedow | 2230e1f9 | 2015-03-25 06:10:12 | [diff] [blame] | 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. |
| 4 | |
| 5 | #ifndef REMOTING_TEST_REMOTE_APPLICATION_DETAILS_H_ |
| 6 | #define REMOTING_TEST_REMOTE_APPLICATION_DETAILS_H_ |
| 7 | |
| 8 | #include <string> |
| 9 | |
| 10 | namespace remoting { |
| 11 | namespace test { |
| 12 | |
| 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) {} |
| 18 | |
| 19 | std::string application_id; |
| 20 | std::string main_window_title; |
| 21 | }; |
| 22 | |
| 23 | } // namespace test |
| 24 | } // namespace remoting |
| 25 | |
| 26 | #endif // REMOTING_TEST_REMOTE_APPLICATION_DETAILS_H_ |