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

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

Issue 2697063004: Fix of "login is not defined" error in OOBE (Closed)
Patch Set: Merge Created 3 years, 9 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
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_OOBE_UI_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_
7 7
8 #include <map> 8 #include <map>
9 #include <memory> 9 #include <memory>
10 #include <string> 10 #include <string>
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 std::vector<base::Closure> ready_callbacks_; 253 std::vector<base::Closure> ready_callbacks_;
254 254
255 // List of registered observers. 255 // List of registered observers.
256 base::ObserverList<Observer> observer_list_; 256 base::ObserverList<Observer> observer_list_;
257 257
258 // Observer of CrosSettings watching the kRebootOnShutdown policy. 258 // Observer of CrosSettings watching the kRebootOnShutdown policy.
259 std::unique_ptr<ShutdownPolicyHandler> shutdown_policy_handler_; 259 std::unique_ptr<ShutdownPolicyHandler> shutdown_policy_handler_;
260 260
261 std::unique_ptr<ash::ScreenDimmer> screen_dimmer_; 261 std::unique_ptr<ash::ScreenDimmer> screen_dimmer_;
262 262
263 // Store the deferred JS calls before the screen handler instance is
264 // initialized.
265 std::unique_ptr<JSCallsContainer> js_calls_container;
266
263 DISALLOW_COPY_AND_ASSIGN(OobeUI); 267 DISALLOW_COPY_AND_ASSIGN(OobeUI);
264 }; 268 };
265 269
266 } // namespace chromeos 270 } // namespace chromeos
267 271
268 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ 272 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc ('k') | chrome/browser/ui/webui/chromeos/login/oobe_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698