Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / webui / options / supervised_user_create_confirm_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_SUPERVISED_USER_CREATE_CONFIRM_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_SUPERVISED_USER_CREATE_CONFIRM_HANDLER_H_
7
8 #include "chrome/browser/ui/webui/options/options_ui.h"
9
10 namespace base {
11 class DictionaryValue;
12 }
13
14 namespace options {
15
16 // Handler for the confirmation dialog after successful creation of a supervised
17 // user.
18 class SupervisedUserCreateConfirmHandler : public OptionsPageUIHandler {
19  public:
20   SupervisedUserCreateConfirmHandler();
21   ~SupervisedUserCreateConfirmHandler() override;
22
23   // OptionsPageUIHandler implementation.
24   void GetLocalizedValues(base::DictionaryValue* localized_strings) override;
25
26   // WebUIMessageHandler implementation.
27   void RegisterMessages() override;
28
29  private:
30   // Callback for the "switchToProfile" message.
31   // Opens a new window for the profile.
32   // |args| is of the form [ {string} profileFilePath ]
33   void SwitchToProfile(const base::ListValue* args);
34
35   DISALLOW_COPY_AND_ASSIGN(SupervisedUserCreateConfirmHandler);
36 };
37
38 }  // namespace options
39
40 #endif  // CHROME_BROWSER_UI_WEBUI_OPTIONS_SUPERVISED_USER_CREATE_CONFIRM_HANDLER_H_