| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_UI_WEBUI_OPTIONS_CHROMEOS_CONSUMER_MANAGEMENT_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_CONSUMER_MANAGEMENT_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_CONSUMER_MANAGEMENT_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_CONSUMER_MANAGEMENT_HANDLER_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/values.h" | 10 #include "base/values.h" |
| 11 #include "chrome/browser/ui/webui/options/options_ui.h" | 11 #include "chrome/browser/ui/webui/options/options_ui.h" |
| 12 | 12 |
| 13 namespace policy { | 13 namespace policy { |
| 14 class ConsumerManagementService; | 14 class ConsumerManagementService; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace chromeos { | 17 namespace chromeos { |
| 18 namespace options { | 18 namespace options { |
| 19 | 19 |
| 20 // Consumer management overlay page UI handler. | 20 // Consumer management overlay page UI handler. |
| 21 class ConsumerManagementHandler : public ::options::OptionsPageUIHandler { | 21 class ConsumerManagementHandler : public ::options::OptionsPageUIHandler { |
| 22 public: | 22 public: |
| 23 explicit ConsumerManagementHandler( | 23 explicit ConsumerManagementHandler( |
| 24 policy::ConsumerManagementService* management_service); | 24 policy::ConsumerManagementService* management_service); |
| 25 virtual ~ConsumerManagementHandler(); | 25 virtual ~ConsumerManagementHandler(); |
| 26 | 26 |
| 27 // OptionsPageUIHandler implementation. | 27 // OptionsPageUIHandler implementation. |
| 28 virtual void GetLocalizedValues( | 28 virtual void GetLocalizedValues( |
| 29 base::DictionaryValue* localized_strings) OVERRIDE; | 29 base::DictionaryValue* localized_strings) override; |
| 30 virtual void RegisterMessages() OVERRIDE; | 30 virtual void RegisterMessages() override; |
| 31 | 31 |
| 32 private: | 32 private: |
| 33 // Handles the button click events from the browser options page. | 33 // Handles the button click events from the browser options page. |
| 34 void HandleEnrollConsumerManagement(const base::ListValue* args); | 34 void HandleEnrollConsumerManagement(const base::ListValue* args); |
| 35 void HandleUnenrollConsumerManagement(const base::ListValue* args); | 35 void HandleUnenrollConsumerManagement(const base::ListValue* args); |
| 36 | 36 |
| 37 policy::ConsumerManagementService* management_service_; | 37 policy::ConsumerManagementService* management_service_; |
| 38 | 38 |
| 39 DISALLOW_COPY_AND_ASSIGN(ConsumerManagementHandler); | 39 DISALLOW_COPY_AND_ASSIGN(ConsumerManagementHandler); |
| 40 }; | 40 }; |
| 41 | 41 |
| 42 } // namespace options | 42 } // namespace options |
| 43 } // namespace chromeos | 43 } // namespace chromeos |
| 44 | 44 |
| 45 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_CONSUMER_MANAGEMENT_HANDLER_
H_ | 45 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_CONSUMER_MANAGEMENT_HANDLER_
H_ |
| OLD | NEW |