| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_PROXY_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_PROXY_SERVICE_H_ |
| 6 #define CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_PROXY_SERVICE_H_ | 6 #define CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_PROXY_SERVICE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/observer_list.h" | 13 #include "base/observer_list.h" |
| 14 #include "chrome/browser/prefs/pref_change_registrar.h" | 14 #include "chrome/browser/api/prefs/pref_change_registrar.h" |
| 15 #include "chrome/browser/printing/cloud_print/cloud_print_setup_handler.h" | 15 #include "chrome/browser/printing/cloud_print/cloud_print_setup_handler.h" |
| 16 #include "chrome/browser/profiles/profile_keyed_service.h" | 16 #include "chrome/browser/profiles/profile_keyed_service.h" |
| 17 #include "content/public/browser/notification_observer.h" | 17 #include "content/public/browser/notification_observer.h" |
| 18 | 18 |
| 19 class Profile; | 19 class Profile; |
| 20 class ServiceProcessControl; | 20 class ServiceProcessControl; |
| 21 | 21 |
| 22 namespace cloud_print { | 22 namespace cloud_print { |
| 23 struct CloudPrintProxyInfo; | 23 struct CloudPrintProxyInfo; |
| 24 } // namespace cloud_print | 24 } // namespace cloud_print |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 PrefChangeRegistrar pref_change_registrar_; | 109 PrefChangeRegistrar pref_change_registrar_; |
| 110 | 110 |
| 111 // If set, continue trying to disable the connector, and quit the process | 111 // If set, continue trying to disable the connector, and quit the process |
| 112 // once successful. | 112 // once successful. |
| 113 bool enforcing_connector_policy_; | 113 bool enforcing_connector_policy_; |
| 114 | 114 |
| 115 DISALLOW_COPY_AND_ASSIGN(CloudPrintProxyService); | 115 DISALLOW_COPY_AND_ASSIGN(CloudPrintProxyService); |
| 116 }; | 116 }; |
| 117 | 117 |
| 118 #endif // CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_PROXY_SERVICE_H_ | 118 #endif // CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_PROXY_SERVICE_H_ |
| OLD | NEW |