| OLD | NEW | 
|---|
| 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_ACTOR_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_ACTOR_H_ | 
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_ACTOR_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_ACTOR_H_ | 
| 7 | 7 | 
| 8 #include "base/macros.h" | 8 #include "base/macros.h" | 
| 9 | 9 | 
| 10 namespace base { | 10 namespace base { | 
| 11 class DictionaryValue; | 11 class DictionaryValue; | 
| 12 } | 12 } | 
| 13 | 13 | 
| 14 namespace chromeos { | 14 namespace chromeos { | 
| 15 | 15 | 
| 16 namespace host_pairing { | 16 namespace host_pairing { | 
| 17 | 17 | 
| 18 // Keep these constants synced with corresponding constants defined in | 18 // Keep these constants synced with corresponding constants defined in | 
| 19 // oobe_screen_host_pairing.js. | 19 // oobe_screen_host_pairing.js. | 
| 20 // Conxtext keys. | 20 // Conxtext keys. | 
| 21 extern const char kContextKeyPage[]; | 21 extern const char kContextKeyPage[]; | 
| 22 extern const char kContextKeyDeviceName[]; | 22 extern const char kContextKeyDeviceName[]; | 
| 23 extern const char kContextKeyConfirmationCode[]; | 23 extern const char kContextKeyConfirmationCode[]; | 
| 24 extern const char kContextKeyEnrollmentDomain[]; | 24 extern const char kContextKeyEnrollmentDomain[]; | 
| 25 extern const char kContextKeyUpdateProgress[]; | 25 extern const char kContextKeyUpdateProgress[]; | 
| 26 | 26 | 
| 27 // Pages names. | 27 // Pages names. | 
| 28 extern const char kPageWelcome[]; | 28 extern const char kPageWelcome[]; | 
| 29 extern const char kPageCodeConfirmation[]; | 29 extern const char kPageCodeConfirmation[]; | 
|  | 30 extern const char kPageSetupBasicConfiguration[]; | 
|  | 31 extern const char kPageSetupNetworkError[]; | 
| 30 extern const char kPageUpdate[]; | 32 extern const char kPageUpdate[]; | 
| 31 extern const char kPageEnrollmentIntroduction[]; | 33 extern const char kPageEnrollmentIntroduction[]; | 
| 32 extern const char kPageEnrollment[]; | 34 extern const char kPageEnrollment[]; | 
| 33 extern const char kPageEnrollmentError[]; | 35 extern const char kPageEnrollmentError[]; | 
| 34 extern const char kPagePairingDone[]; | 36 extern const char kPagePairingDone[]; | 
| 35 | 37 | 
| 36 }  // namespace host_pairing | 38 }  // namespace host_pairing | 
| 37 | 39 | 
| 38 class HostPairingScreenActor { | 40 class HostPairingScreenActor { | 
| 39  public: | 41  public: | 
| (...skipping 11 matching lines...) Expand all  Loading... | 
| 51   virtual void SetDelegate(Delegate* delegate) = 0; | 53   virtual void SetDelegate(Delegate* delegate) = 0; | 
| 52   virtual void OnContextChanged(const base::DictionaryValue& diff) = 0; | 54   virtual void OnContextChanged(const base::DictionaryValue& diff) = 0; | 
| 53 | 55 | 
| 54  private: | 56  private: | 
| 55   DISALLOW_COPY_AND_ASSIGN(HostPairingScreenActor); | 57   DISALLOW_COPY_AND_ASSIGN(HostPairingScreenActor); | 
| 56 }; | 58 }; | 
| 57 | 59 | 
| 58 }  // namespace chromeos | 60 }  // namespace chromeos | 
| 59 | 61 | 
| 60 #endif  // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_ACTOR_H_ | 62 #endif  // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_ACTOR_H_ | 
| OLD | NEW | 
|---|