Suppress tabs permission warning if there is already a browsingHistory warning.
[chromium-blink-merge.git] / chrome / common / cloud_print / cloud_print_proxy_info.h
blob2b97378bd72d69f58c1ce662c7afa3443aa23893
1 // Copyright (c) 2011 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 CHROME_COMMON_CLOUD_PRINT_CLOUD_PRINT_PROXY_INFO_H_
6 #define CHROME_COMMON_CLOUD_PRINT_CLOUD_PRINT_PROXY_INFO_H_
8 #include <string>
10 namespace cloud_print {
12 // This struct is used for ServiceHostMsg_CloudPrint_Info IPC message.
13 struct CloudPrintProxyInfo {
14 CloudPrintProxyInfo();
15 ~CloudPrintProxyInfo();
17 bool enabled;
18 std::string email;
19 std::string proxy_id;
22 } // namespace cloud_print
24 #endif // CHROME_COMMON_CLOUD_PRINT_CLOUD_PRINT_PROXY_INFO_H_