Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / webui / options / chromeos / consumer_management_handler.h
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_CONSUMER_MANAGEMENT_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_CONSUMER_MANAGEMENT_HANDLER_H_
7
8 #include "base/compiler_specific.h"
9 #include "base/macros.h"
10 #include "base/values.h"
11 #include "chrome/browser/ui/webui/options/options_ui.h"
12
13 namespace policy {
14 class ConsumerManagementService;
15 }
16
17 namespace chromeos {
18 namespace options {
19
20 // Consumer management overlay page UI handler.
21 class ConsumerManagementHandler : public ::options::OptionsPageUIHandler {
22  public:
23   explicit ConsumerManagementHandler(
24       policy::ConsumerManagementService* management_service);
25   virtual ~ConsumerManagementHandler();
26
27   // OptionsPageUIHandler implementation.
28   virtual void GetLocalizedValues(
29       base::DictionaryValue* localized_strings) override;
30   virtual void RegisterMessages() override;
31
32  private:
33   // Handles the button click events from the browser options page.
34   void HandleEnrollConsumerManagement(const base::ListValue* args);
35   void HandleUnenrollConsumerManagement(const base::ListValue* args);
36
37   policy::ConsumerManagementService* management_service_;
38
39   DISALLOW_COPY_AND_ASSIGN(ConsumerManagementHandler);
40 };
41
42 }  // namespace options
43 }  // namespace chromeos
44
45 #endif  // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_CONSUMER_MANAGEMENT_HANDLER_H_