Compute if a layer is clipped outside CalcDrawProps
[chromium-blink-merge.git] / remoting / test / host_info.h
blob06348fba735bdd59cb109f07e966068e27945195
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_HOST_INFO_H_
6 #define REMOTING_TEST_HOST_INFO_H_
8 #include <string>
9 #include <vector>
11 #include "base/values.h"
13 namespace remoting {
14 namespace test {
16 enum HostStatus {
17 kHostStatusOnline,
18 kHostStatusOffline
21 struct HostInfo {
22 HostInfo();
23 ~HostInfo();
25 bool ParseHostInfo(const base::DictionaryValue& host_info);
27 std::string host_id;
28 std::string host_jid;
29 std::string host_name;
30 HostStatus status = kHostStatusOffline;
31 std::string offline_reason;
32 std::string public_key;
33 std::vector<std::string> token_url_patterns;
36 } // namespace test
37 } // namespace remoting
39 #endif // REMOTING_TEST_HOST_INFO_H_