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

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

Issue 298373002: Follow up change for disabling out-of-box VK overscroll (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/webui/chromeos/login/oobe_ui.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" 5 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h"
6 6
7 #include "ash/ash_switches.h" 7 #include "ash/ash_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/memory/ref_counted_memory.h" 10 #include "base/memory/ref_counted_memory.h"
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 } 302 }
303 303
304 void OobeUI::ShowScreen(WizardScreen* screen) { 304 void OobeUI::ShowScreen(WizardScreen* screen) {
305 screen->Show(); 305 screen->Show();
306 } 306 }
307 307
308 void OobeUI::HideScreen(WizardScreen* screen) { 308 void OobeUI::HideScreen(WizardScreen* screen) {
309 screen->Hide(); 309 screen->Hide();
310 } 310 }
311 311
312 CoreOobeActor* OobeUI::GetCoreOobeActor() {
313 return core_handler_;
314 }
315
312 UpdateScreenActor* OobeUI::GetUpdateScreenActor() { 316 UpdateScreenActor* OobeUI::GetUpdateScreenActor() {
313 return update_screen_handler_; 317 return update_screen_handler_;
314 } 318 }
315 319
316 NetworkScreenActor* OobeUI::GetNetworkScreenActor() { 320 NetworkScreenActor* OobeUI::GetNetworkScreenActor() {
317 return network_screen_actor_; 321 return network_screen_actor_;
318 } 322 }
319 323
320 EulaScreenActor* OobeUI::GetEulaScreenActor() { 324 EulaScreenActor* OobeUI::GetEulaScreenActor() {
321 return eula_screen_actor_; 325 return eula_screen_actor_;
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 observer_list_, 510 observer_list_,
507 OnCurrentScreenChanged(current_screen_, new_screen)); 511 OnCurrentScreenChanged(current_screen_, new_screen));
508 current_screen_ = new_screen; 512 current_screen_ = new_screen;
509 } else { 513 } else {
510 NOTREACHED() << "Screen should be registered in InitializeScreenMaps()"; 514 NOTREACHED() << "Screen should be registered in InitializeScreenMaps()";
511 current_screen_ = SCREEN_UNKNOWN; 515 current_screen_ = SCREEN_UNKNOWN;
512 } 516 }
513 } 517 }
514 518
515 } // namespace chromeos 519 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/chromeos/login/oobe_ui.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698