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

Side by Side Diff: chrome/browser/chromeos/login/screens/base_screen.cc

Issue 647043004: WizardScreen is merged to BaseScreen. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/master
Patch Set: Created 6 years, 2 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 #include "chrome/browser/chromeos/login/screens/base_screen.h" 5 #include "chrome/browser/chromeos/login/screens/base_screen.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "chrome/browser/chromeos/login/screens/screen_observer.h" 8 #include "chrome/browser/chromeos/login/screens/screen_observer.h"
9 9
10 namespace chromeos { 10 namespace chromeos {
11 11
12 BaseScreen::BaseScreen() { 12 BaseScreen::BaseScreen(ScreenObserver* screen_observer)
13 : screen_observer_(screen_observer) {
13 } 14 }
14 15
15 BaseScreen::~BaseScreen() { 16 BaseScreen::~BaseScreen() {
16 } 17 }
17 18
18 void BaseScreen::Initialize(ScreenContext* context) { 19 void BaseScreen::Initialize(ScreenContext* context) {
19 } 20 }
20 21
21 void BaseScreen::OnShow() { 22 void BaseScreen::OnShow() {
22 } 23 }
(...skipping 25 matching lines...) Expand all
48 49
49 void BaseScreen::OnButtonPressed(const std::string& button_id) { 50 void BaseScreen::OnButtonPressed(const std::string& button_id) {
50 LOG(WARNING) << "BaseScreen::OnButtonPressed(): button_id=" << button_id; 51 LOG(WARNING) << "BaseScreen::OnButtonPressed(): button_id=" << button_id;
51 } 52 }
52 53
53 void BaseScreen::OnContextChanged(const base::DictionaryValue* diff) { 54 void BaseScreen::OnContextChanged(const base::DictionaryValue* diff) {
54 LOG(WARNING) << "BaseScreen::OnContextChanged()"; 55 LOG(WARNING) << "BaseScreen::OnContextChanged()";
55 } 56 }
56 57
57 } // namespace chromeos 58 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/screens/base_screen.h ('k') | chrome/browser/chromeos/login/screens/controller_pairing_screen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698