Don't show supervised user as "already on this device" while they're being imported.
[chromium-blink-merge.git] / chrome / browser / ui / webui / options / supervised_user_learn_more_handler.h
bloba8e2662dbd635322169203a60f663f02b6aebd20
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.
5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_SUPERVISED_USER_LEARN_MORE_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_SUPERVISED_USER_LEARN_MORE_HANDLER_H_
8 #include "chrome/browser/ui/webui/options/options_ui.h"
10 namespace base {
11 class DictionaryValue;
14 namespace options {
16 // Handler for the "Learn more" dialog available during creation of a supervised
17 // user.
18 class SupervisedUserLearnMoreHandler : public OptionsPageUIHandler {
19 public:
20 SupervisedUserLearnMoreHandler();
21 ~SupervisedUserLearnMoreHandler() override;
23 // OptionsPageUIHandler implementation.
24 void GetLocalizedValues(base::DictionaryValue* localized_strings) override;
26 private:
27 DISALLOW_COPY_AND_ASSIGN(SupervisedUserLearnMoreHandler);
30 } // namespace options
32 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_SUPERVISED_USER_LEARN_MORE_HANDLER_H_