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

Side by Side Diff: chrome/browser/ui/webui/chromeos/login/base_screen_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_BASE_SCREEN_HANDLER_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_BASE_SCREEN_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_BASE_SCREEN_HANDLER_H_ 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_BASE_SCREEN_HANDLER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/bind_helpers.h" 11 #include "base/bind_helpers.h"
12 #include "base/callback.h" 12 #include "base/callback.h"
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "chrome/browser/chromeos/login/screens/model_view_channel.h" 14 #include "chrome/browser/chromeos/login/screens/model_view_channel.h"
15 #include "chrome/browser/ui/webui/chromeos/login/oobe_screen.h" 15 #include "chrome/browser/ui/webui/chromeos/login/oobe_screen.h"
16 #include "components/login/base_screen_handler_utils.h" 16 #include "components/login/base_screen_handler_utils.h"
17 #include "content/public/browser/web_ui.h" 17 #include "content/public/browser/web_ui.h"
18 #include "content/public/browser/web_ui_message_handler.h" 18 #include "content/public/browser/web_ui_message_handler.h"
19 #include "ui/gfx/native_widget_types.h" 19 #include "ui/gfx/native_widget_types.h"
20 20
21 namespace base { 21 namespace base {
22 class DictionaryValue; 22 class DictionaryValue;
23 class ListValue; 23 class ListValue;
24 class Value;
25 } 24 }
26 25
27 namespace login { 26 namespace login {
28 class LocalizedValuesBuilder; 27 class LocalizedValuesBuilder;
29 } 28 }
30 29
31 namespace chromeos { 30 namespace chromeos {
32 31
33 class BaseScreen; 32 class BaseScreen;
34 class OobeUI; 33 class OobeUI;
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 194
196 // Pending changes to context which will be sent when the page will be ready. 195 // Pending changes to context which will be sent when the page will be ready.
197 base::DictionaryValue pending_context_changes_; 196 base::DictionaryValue pending_context_changes_;
198 197
199 DISALLOW_COPY_AND_ASSIGN(BaseScreenHandler); 198 DISALLOW_COPY_AND_ASSIGN(BaseScreenHandler);
200 }; 199 };
201 200
202 } // namespace chromeos 201 } // namespace chromeos
203 202
204 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_BASE_SCREEN_HANDLER_H_ 203 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_BASE_SCREEN_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698