1 // Copyright 2013 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.
5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_MANAGED_USER_CREATE_CONFIRM_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_MANAGED_USER_CREATE_CONFIRM_HANDLER_H_
8 #include "chrome/browser/ui/webui/options/options_ui.h"
11 class DictionaryValue
;
16 // Handler for the confirmation dialog after successful creation of a managed
18 class ManagedUserCreateConfirmHandler
: public OptionsPageUIHandler
{
20 ManagedUserCreateConfirmHandler();
21 virtual ~ManagedUserCreateConfirmHandler();
23 // OptionsPageUIHandler implementation.
24 virtual void GetLocalizedValues(
25 base::DictionaryValue
* localized_strings
) OVERRIDE
;
27 // WebUIMessageHandler implementation.
28 virtual void RegisterMessages() OVERRIDE
;
31 // Callback for the "switchToProfile" message.
32 // Opens a new window for the profile.
33 // |args| is of the form [ {string} profileFilePath ]
34 void SwitchToProfile(const base::ListValue
* args
);
36 DISALLOW_COPY_AND_ASSIGN(ManagedUserCreateConfirmHandler
);
39 } // namespace options
41 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_MANAGED_USER_CREATE_CONFIRM_HANDLER_H_