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

Unified Diff: components/arc/intent_helper/arc_intent_helper_observer.h

Issue 2487623002: Notify Files App when ARC++ app is installed/removed (Closed)
Patch Set: Add IsInitialized to arc_service_manager. Created 4 years 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/intent_helper/arc_intent_helper_observer.h
diff --git a/components/arc/intent_helper/arc_intent_helper_observer.h b/components/arc/intent_helper/arc_intent_helper_observer.h
new file mode 100644
index 0000000000000000000000000000000000000000..d8cc87e7d65c95973ec0c53c029b2a0648af770a
--- /dev/null
+++ b/components/arc/intent_helper/arc_intent_helper_observer.h
@@ -0,0 +1,21 @@
+// Copyright 2016 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_INTENT_HELPER_ARC_INTENT_HELPER_OBSERVER_H_
+#define COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_OBSERVER_H_
+
+namespace arc {
+
+class ArcIntentHelperObserver {
+ public:
+ // Called when app's intent filter is updated.
+ virtual void OnAppsUpdated() = 0;
+
+ protected:
+ virtual ~ArcIntentHelperObserver() = default;
+};
+
+} // namespace arc
+
+#endif // COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_OBSERVER_H_

Powered by Google App Engine
This is Rietveld 408576698