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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: remoting/test/remote_application_details.h
diff --git a/remoting/test/remote_application_details.h b/remoting/test/remote_application_details.h
new file mode 100644
index 0000000000000000000000000000000000000000..711b2106cce2b8f26893ab22af3220f1d2df1b7f
--- /dev/null
+++ b/remoting/test/remote_application_details.h
@@ -0,0 +1,26 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef REMOTING_TEST_REMOTE_APPLICATION_DETAILS_H_
+#define REMOTING_TEST_REMOTE_APPLICATION_DETAILS_H_
+
+#include <string>
+
+namespace remoting {
+namespace test {
+
+// Container for application details used for testing.
+struct RemoteApplicationDetails {
+ RemoteApplicationDetails(const std::string& app_id,
+ const std::string& window_title)
+ : application_id(app_id), main_window_title(window_title) {}
+
+ std::string application_id;
+ std::string main_window_title;
+};
+
+} // namespace test
+} // namespace remoting
+
+#endif // REMOTING_TEST_REMOTE_APPLICATION_DETAILS_H_
« 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