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_
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
;
24 } // namespace remoting
26 #endif // REMOTING_TEST_REMOTE_APPLICATION_DETAILS_H_