Home | History | Annotate | Download | only in cloud_print
      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.
      4 
      5 #ifndef CHROME_COMMON_CLOUD_PRINT_CLOUD_PRINT_PROXY_INFO_H_
      6 #define CHROME_COMMON_CLOUD_PRINT_CLOUD_PRINT_PROXY_INFO_H_
      7 
      8 #include <string>
      9 
     10 namespace cloud_print {
     11 
     12 // This struct is used for ServiceHostMsg_CloudPrint_Info IPC message.
     13 struct CloudPrintProxyInfo {
     14   CloudPrintProxyInfo();
     15   ~CloudPrintProxyInfo();
     16 
     17   bool enabled;
     18   std::string email;
     19   std::string proxy_id;
     20 };
     21 
     22 }  // namespace cloud_print
     23 
     24 #endif  // CHROME_COMMON_CLOUD_PRINT_CLOUD_PRINT_PROXY_INFO_H_
     25