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

Unified Diff: components/arc/auth/arc_auth_service.h

Issue 1553613002: Add ArcAuthService to handle IPC request from ARC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move to chrome/ Created 4 years, 12 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: components/arc/auth/arc_auth_service.h
diff --git a/components/arc/auth/arc_auth_service.h b/components/arc/auth/arc_auth_service.h
new file mode 100644
index 0000000000000000000000000000000000000000..cbf7bd9815a4d27905b593fbc9de51bd7a87cf70
--- /dev/null
+++ b/components/arc/auth/arc_auth_service.h
@@ -0,0 +1,18 @@
+// Copyright 2015 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_ARC_AUTH_ARC_AUTH_SERVICE_H_
+#define COMPONENTS_ARC_AUTH_ARC_AUTH_SERVICE_H_
+
+namespace arc {
+
+class ArcAuthService {
+ public:
Luis Héctor Chávez 2016/01/04 21:26:21 virtual ~ArcAuthService()?
victorhsieh 2016/01/04 21:31:28 Done.
+ // Starts listening to state changes of the ArcBridgeService
+ virtual void StartObservingBridgeServiceChanges() = 0;
+};
+
+} // namespace arc
+
+#endif // COMPONENTS_ARC_AUTH_ARC_AUTH_SERVICE_H_

Powered by Google App Engine
This is Rietveld 408576698