Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Side by Side Diff: chrome/browser/ui/webui/options/chromeos/help_overlay_handler.h

Issue 423533003: Use PageManager in About page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698