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

Side by Side Diff: chrome/browser/ui/webui/chromeos/login/core_oobe_handler.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_CORE_OOBE_HANDLER_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_CORE_OOBE_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_CORE_OOBE_HANDLER_H_ 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_CORE_OOBE_HANDLER_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/callback.h" 12 #include "base/callback.h"
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "base/values.h" 14 #include "base/values.h"
15 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" 15 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h"
16 #include "chrome/browser/chromeos/login/screens/core_oobe_actor.h" 16 #include "chrome/browser/chromeos/login/screens/core_oobe_actor.h"
17 #include "chrome/browser/chromeos/login/version_info_updater.h" 17 #include "chrome/browser/chromeos/login/version_info_updater.h"
18 #include "chrome/browser/ui/webui/chromeos/login/base_screen_handler.h" 18 #include "chrome/browser/ui/webui/chromeos/login/base_screen_handler.h"
19 #include "chrome/browser/ui/webui/chromeos/login/demo_mode_detector.h" 19 #include "chrome/browser/ui/webui/chromeos/login/demo_mode_detector.h"
20 #include "ui/events/event_source.h" 20 #include "ui/events/event_source.h"
21 #include "ui/keyboard/scoped_keyboard_disabler.h" 21 #include "ui/keyboard/scoped_keyboard_disabler.h"
22 22
23 namespace base { 23 namespace base {
24 class ListValue; 24 class ListValue;
25 } 25 }
26 26
27 namespace gfx {
28 class Rect;
29 }
30
31 namespace ui { 27 namespace ui {
32 class EventProcessor; 28 class EventProcessor;
33 } 29 }
34 30
35 namespace chromeos { 31 namespace chromeos {
36 32
37 class HelpAppLauncher; 33 class HelpAppLauncher;
38 class OobeUI; 34 class OobeUI;
39 35
40 // The core handler for Javascript messages related to the "oobe" view. 36 // The core handler for Javascript messages related to the "oobe" view.
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 DemoModeDetector demo_mode_detector_; 195 DemoModeDetector demo_mode_detector_;
200 196
201 keyboard::ScopedKeyboardDisabler scoped_keyboard_disabler_; 197 keyboard::ScopedKeyboardDisabler scoped_keyboard_disabler_;
202 198
203 DISALLOW_COPY_AND_ASSIGN(CoreOobeHandler); 199 DISALLOW_COPY_AND_ASSIGN(CoreOobeHandler);
204 }; 200 };
205 201
206 } // namespace chromeos 202 } // namespace chromeos
207 203
208 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_CORE_OOBE_HANDLER_H_ 204 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_CORE_OOBE_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698