Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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_HELP_OVERLAY_HANDLER_H_ | |
| 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_HELP_OVERLAY_HANDLER_H_ | |
| 7 | |
|
Dan Beam
2014/08/06 18:30:55
#include "base/basictypes.h"
#include "base/macros
michaelpg
2014/08/06 21:58:18
Oops, these files should not be part of this CL, t
| |
| 8 #include "chrome/browser/ui/webui/options/options_ui.h" | |
| 9 | |
| 10 namespace chromeos { | |
| 11 namespace options { | |
| 12 | |
| 13 // Help UI page handler for the options page when using Settings in a window | |
| 14 // on Chrome OS. Defers to ::HelpHandler. | |
| 15 class HelpOverlayHandler : public ::options::OptionsPageUIHandler { | |
| 16 public: | |
| 17 HelpOverlayHandler(); | |
| 18 virtual ~HelpOverlayHandler(); | |
| 19 | |
| 20 // OptionsPageUIHandler implementation. | |
| 21 virtual void GetLocalizedValues( | |
| 22 base::DictionaryValue* localized_strings) OVERRIDE; | |
| 23 | |
| 24 // WebUIMessageHandler implementation. | |
| 25 virtual void RegisterMessages() OVERRIDE; | |
| 26 | |
| 27 private: | |
| 28 DISALLOW_COPY_AND_ASSIGN(HelpOverlayHandler); | |
| 29 }; | |
| 30 | |
| 31 } // namespace options | |
| 32 } // namespace chromeos | |
| 33 | |
| 34 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_HELP_OVERLAY_HANDLER_H_ | |
| OLD | NEW |