Chromium Code Reviews| Index: chrome/service/cloud_print/connector_settings.h |
| diff --git a/chrome/service/cloud_print/connector_settings.h b/chrome/service/cloud_print/connector_settings.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..fa671ba478f41885d000e47453ab9b7e331d6aec |
| --- /dev/null |
| +++ b/chrome/service/cloud_print/connector_settings.h |
| @@ -0,0 +1,62 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_SERVICE_CLOUD_PRINT_CONNECTOR_SETTINGS_H_ |
| +#define CHROME_SERVICE_CLOUD_PRINT_CONNECTOR_SETTINGS_H_ |
| + |
| +#include <string> |
| + |
| +#include "base/memory/scoped_ptr.h" |
| +#include "googleurl/src/gurl.h" |
| + |
| +class ServiceProcessPrefs; |
| + |
| +namespace base { |
| + class DictionaryValue; |
| +} |
| + |
| +class ConnectorSettings { |
| + public: |
| + ConnectorSettings(); |
| + ~ConnectorSettings(); |
| + |
| + void InitFrom(ServiceProcessPrefs* prefs); |
| + |
| + void CopyFrom(const ConnectorSettings& source); |
| + |
| + const GURL& cloud_print_server_url() const { |
| + return cloud_print_server_url_; |
| + }; |
| + |
| + const std::string& proxy_id() const { |
| + return proxy_id_; |
| + } |
| + |
| + bool remove_missing_printers() const { |
| + return remove_missing_printers_; |
| + } |
| + |
| + const base::DictionaryValue* print_system_settings() const { |
| + return print_system_settings_.get(); |
| + }; |
| + |
| + private: |
| + // Cloud Print server url. |
| + GURL cloud_print_server_url_; |
| + |
| + // This is initialized after a successful call to one of the Enable* methods. |
| + // It is not cleared in DisableUser. |
| + std::string proxy_id_; |
| + |
| + // If |true| printers that are not found locally will be deleted on GCP |
| + // even if the local enumeration failed. |
| + bool remove_missing_printers_; |
| + |
| + // Print system settings. |
| + scoped_ptr<base::DictionaryValue> print_system_settings_; |
| + DISALLOW_COPY_AND_ASSIGN(ConnectorSettings); |
|
Lei Zhang
2012/09/21 20:26:22
nit: add a newline before this.
Vitaly Buka (NO REVIEWS)
2012/09/21 20:36:37
Done.
|
| +}; |
| + |
| +#endif // CHROME_SERVICE_CLOUD_PRINT_CONNECTOR_SETTINGS_H_ |
| + |