Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: remoting/test/remote_application_details.h

Issue 1008043003: Adding Test Fixture for initial test cases for the App Remoting Test Driver. Also includes the pub… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing 2nd round of feedback Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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_
OLDNEW
« no previous file with comments | « remoting/test/app_remoting_test_driver_environment_app_details.cc ('k') | remoting/test/remote_host_info_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698