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

Unified Diff: components/pairing/shark_connection_listener.h

Issue 528803002: Host pairing OOBE starts at the right time. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nit fixed. Created 6 years, 3 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
« no previous file with comments | « components/pairing.gypi ('k') | components/pairing/shark_connection_listener.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/pairing/shark_connection_listener.h
diff --git a/components/pairing/shark_connection_listener.h b/components/pairing/shark_connection_listener.h
new file mode 100644
index 0000000000000000000000000000000000000000..e2e786b0a7fcdadb746afab9554a19b1a7795ec8
--- /dev/null
+++ b/components/pairing/shark_connection_listener.h
@@ -0,0 +1,48 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_PAIRING_SHARK_CONNECTION_LISTENER_H_
+#define COMPONENTS_PAIRING_SHARK_CONNECTION_LISTENER_H_
+
+#include <string>
+
+#include "base/callback.h"
+#include "base/macros.h"
+#include "base/memory/scoped_ptr.h"
+#include "components/pairing/host_pairing_controller.h"
+
+namespace pairing_chromeos {
+
+// Listens for incoming connection from shark controller. If connection
+// is established, invokes callback passing HostPairingController
+// as an argument.
+class SharkConnectionListener : public HostPairingController::Observer {
+ public:
+ typedef base::Callback<void(scoped_ptr<HostPairingController>)>
+ OnConnectedCallback;
+
+ explicit SharkConnectionListener(OnConnectedCallback callback);
+ virtual ~SharkConnectionListener();
+
+ private:
+ typedef HostPairingController::Stage Stage;
+
+ // HostPairingController::Observer overrides:
+ virtual void PairingStageChanged(Stage new_stage) 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;
+
+ OnConnectedCallback callback_;
+ scoped_ptr<HostPairingController> controller_;
+
+ DISALLOW_COPY_AND_ASSIGN(SharkConnectionListener);
+};
+
+} // namespace pairing_chromeos
+
+#endif // COMPONENTS_PAIRING_SHARK_CONNECTION_LISTENER_H_
« no previous file with comments | « components/pairing.gypi ('k') | components/pairing/shark_connection_listener.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698