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

Side by Side Diff: components/pairing/host_pairing_controller.h

Issue 387163002: Move Chrome OS pairing interface to chrome/browser/chromeos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code review fixes 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 CHROMEOS_PAIRING_HOST_PAIRING_CONTROLLER_H_ 5 #ifndef COMPONENTS_PAIRING_HOST_PAIRING_CONTROLLER_H_
6 #define CHROMEOS_PAIRING_HOST_PAIRING_CONTROLLER_H_ 6 #define COMPONENTS_PAIRING_HOST_PAIRING_CONTROLLER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "chromeos/chromeos_export.h" 11 #include "components/pairing/pairing_export.h"
12 12
13 namespace chromeos { 13 namespace pairing_chromeos {
14 14
15 class CHROMEOS_EXPORT HostPairingController { 15 class PAIRING_EXPORT HostPairingController {
16 public: 16 public:
17 enum Stage { 17 enum Stage {
18 STAGE_NONE, 18 STAGE_NONE,
19 STAGE_WAITING_FOR_CONTROLLER, 19 STAGE_WAITING_FOR_CONTROLLER,
20 STAGE_WAITING_FOR_CODE_CONFIRMATION, 20 STAGE_WAITING_FOR_CODE_CONFIRMATION,
21 STAGE_UPDATING, 21 STAGE_UPDATING,
22 STAGE_WAITING_FOR_CONTROLLER_AFTER_UPDATE, 22 STAGE_WAITING_FOR_CONTROLLER_AFTER_UPDATE,
23 STAGE_WAITING_FOR_CREDENTIALS, 23 STAGE_WAITING_FOR_CREDENTIALS,
24 STAGE_ENROLLING, 24 STAGE_ENROLLING,
25 STAGE_ENROLLMENT_ERROR, 25 STAGE_ENROLLMENT_ERROR,
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 virtual std::string GetConfirmationCode() = 0; 68 virtual std::string GetConfirmationCode() = 0;
69 69
70 // Returns an enrollment domain name. Can be called on stage 70 // Returns an enrollment domain name. Can be called on stage
71 // |STAGE_ENROLLMENT| and later. 71 // |STAGE_ENROLLMENT| and later.
72 virtual std::string GetEnrollmentDomain() = 0; 72 virtual std::string GetEnrollmentDomain() = 0;
73 73
74 private: 74 private:
75 DISALLOW_COPY_AND_ASSIGN(HostPairingController); 75 DISALLOW_COPY_AND_ASSIGN(HostPairingController);
76 }; 76 };
77 77
78 } // namespace chromeos 78 } // namespace pairing_chromeos
79 79
80 #endif // CHROMEOS_PAIRING_HOST_PAIRING_CONTROLLER_H_ 80 #endif // COMPONENTS_PAIRING_HOST_PAIRING_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698