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

Side by Side Diff: chrome/browser/chromeos/login/screens/host_pairing_screen.h

Issue 672203003: ScreenContext is moved to components/login. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 6 years, 1 month 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "chrome/browser/chromeos/login/screens/base_screen.h" 9 #include "chrome/browser/chromeos/login/screens/base_screen.h"
10 #include "chrome/browser/chromeos/login/screens/host_pairing_screen_actor.h" 10 #include "chrome/browser/chromeos/login/screens/host_pairing_screen_actor.h"
11 #include "chrome/browser/chromeos/login/screens/screen_context.h" 11 #include "components/login/screens/screen_context.h"
12 #include "components/pairing/host_pairing_controller.h" 12 #include "components/pairing/host_pairing_controller.h"
13 13
14 namespace chromeos { 14 namespace chromeos {
15 15
16 class HostPairingScreen 16 class HostPairingScreen
17 : public BaseScreen, 17 : public BaseScreen,
18 public pairing_chromeos::HostPairingController::Observer, 18 public pairing_chromeos::HostPairingController::Observer,
19 public HostPairingScreenActor::Delegate { 19 public HostPairingScreenActor::Delegate {
20 public: 20 public:
21 HostPairingScreen(ScreenObserver* observer, HostPairingScreenActor* actor, 21 HostPairingScreen(ScreenObserver* observer, HostPairingScreenActor* actor,
(...skipping 18 matching lines...) Expand all
40 const std::string& timezone, 40 const std::string& timezone,
41 bool send_reports, 41 bool send_reports,
42 const std::string& keyboard_layout) override; 42 const std::string& keyboard_layout) override;
43 virtual void EnrollHost(const std::string& auth_token) override; 43 virtual void EnrollHost(const std::string& auth_token) override;
44 44
45 // Overridden from ControllerPairingView::Delegate: 45 // Overridden from ControllerPairingView::Delegate:
46 virtual void OnActorDestroyed(HostPairingScreenActor* actor) override; 46 virtual void OnActorDestroyed(HostPairingScreenActor* actor) override;
47 47
48 // Context for sharing data between C++ and JS. 48 // Context for sharing data between C++ and JS.
49 // TODO(dzhioev): move to BaseScreen when possible. 49 // TODO(dzhioev): move to BaseScreen when possible.
50 ScreenContext context_; 50 ::login::ScreenContext context_;
51 51
52 HostPairingScreenActor* actor_; 52 HostPairingScreenActor* actor_;
53 53
54 // Controller performing pairing. Owned by the wizard controller. 54 // Controller performing pairing. Owned by the wizard controller.
55 pairing_chromeos::HostPairingController* remora_controller_; 55 pairing_chromeos::HostPairingController* remora_controller_;
56 56
57 // Current stage of pairing process. 57 // Current stage of pairing process.
58 Stage current_stage_; 58 Stage current_stage_;
59 59
60 DISALLOW_COPY_AND_ASSIGN(HostPairingScreen); 60 DISALLOW_COPY_AND_ASSIGN(HostPairingScreen);
61 }; 61 };
62 62
63 } // namespace chromeos 63 } // namespace chromeos
64 64
65 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_ 65 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698