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

Unified Diff: chrome/browser/chromeos/login/screens/host_pairing_screen.h

Issue 491943004: Update the pairing API to include configuration and enrollment. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compile error Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/screens/host_pairing_screen.h
diff --git a/chrome/browser/chromeos/login/screens/host_pairing_screen.h b/chrome/browser/chromeos/login/screens/host_pairing_screen.h
index 40b4ffb581de1023f3c36df2e910d6af9c967159..7a5229fb64a004ccca44dfa876c86759b249bd10 100644
--- a/chrome/browser/chromeos/login/screens/host_pairing_screen.h
+++ b/chrome/browser/chromeos/login/screens/host_pairing_screen.h
@@ -23,8 +23,6 @@ class HostPairingScreen :
private:
typedef pairing_chromeos::HostPairingController::Stage Stage;
- typedef pairing_chromeos::HostPairingController::UpdateProgress
- UpdateProgress;
void CommitContextChanges();
@@ -34,9 +32,14 @@ class HostPairingScreen :
virtual void Hide() OVERRIDE;
virtual std::string GetName() const OVERRIDE;
- // Overridden from pairing_chromeos::HostPairingController::Observer:
+ // pairing_chromeos::HostPairingController::Observer:
virtual void PairingStageChanged(Stage new_stage) OVERRIDE;
- virtual void UpdateAdvanced(const UpdateProgress& progress) OVERRIDE;
+ virtual void ConfigureHost(bool accepted_eula,
+ const std::string& lang,
+ const std::string& timezone,
+ bool send_reports,
+ const std::string& keyboard_layout) OVERRIDE;
+ virtual void EnrollHost(const std::string& auth_token) OVERRIDE;
// Overridden from ControllerPairingView::Delegate:
virtual void OnActorDestroyed(HostPairingScreenActor* actor) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698