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

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

Issue 387163002: Move Chrome OS pairing interface to chrome/browser/chromeos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing file Created 6 years, 5 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
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/host_pairing_screen_actor.h" 9 #include "chrome/browser/chromeos/login/screens/host_pairing_screen_actor.h"
10 #include "chrome/browser/chromeos/login/screens/screen_context.h" 10 #include "chrome/browser/chromeos/login/screens/screen_context.h"
11 #include "chrome/browser/chromeos/login/screens/wizard_screen.h" 11 #include "chrome/browser/chromeos/login/screens/wizard_screen.h"
12 #include "chromeos/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 : public WizardScreen, 16 class HostPairingScreen : public WizardScreen,
17 public HostPairingController::Observer, 17 public HostPairingController::Observer,
18 public HostPairingScreenActor::Delegate { 18 public HostPairingScreenActor::Delegate {
19 public: 19 public:
20 HostPairingScreen(ScreenObserver* observer, HostPairingScreenActor* actor); 20 HostPairingScreen(ScreenObserver* observer, HostPairingScreenActor* actor);
21 virtual ~HostPairingScreen(); 21 virtual ~HostPairingScreen();
22 22
(...skipping 28 matching lines...) Expand all
51 51
52 // Current stage of pairing process. 52 // Current stage of pairing process.
53 Stage current_stage_; 53 Stage current_stage_;
54 54
55 DISALLOW_COPY_AND_ASSIGN(HostPairingScreen); 55 DISALLOW_COPY_AND_ASSIGN(HostPairingScreen);
56 }; 56 };
57 57
58 } // namespace chromeos 58 } // namespace chromeos
59 59
60 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_ 60 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698