blob: 711b2106cce2b8f26893ab22af3220f1d2df1b7f [file] [log] [blame]
joedow2230e1f92015-03-25 06:10:121// 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
10namespace remoting {
11namespace test {
12
13// Container for application details used for testing.
14struct 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_