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

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: Addressed some comments. 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..1d916d9876bbc97eff48a1b655a7b1c204c8d14c
--- /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() = default;
+
Yusuke Sato 2016/11/28 07:48:47 };
oka 2016/11/28 09:57:01 Done.
+} // namespace arc
+
+#endif // COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_OBSERVER_H_
« no previous file with comments | « components/arc/intent_helper/arc_intent_helper_bridge.cc ('k') | extensions/browser/extension_event_histogram_value.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698