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

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: Bug fix: I forgot to add intent_helper to arc_service_manager. Created 4 years, 1 month 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..b4f5280c43030cbfceeb49546d1beab886046a9e
--- /dev/null
+++ b/components/arc/intent_helper/arc_intent_helper_observer.h
@@ -0,0 +1,20 @@
+// 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() {}
hidehiko 2016/11/25 15:38:00 s/{}/= default;/
oka 2016/11/28 07:15:43 Done.
+};
+
+} // namespace arc
+
+#endif // COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_OBSERVER_H_

Powered by Google App Engine
This is Rietveld 408576698