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

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

Issue 2078683002: Add handler and mojo interface to accept android intent filters. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix up version numbers after sync. Created 4 years, 6 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/intent_helper/arc_intent_helper_bridge.h
diff --git a/components/arc/intent_helper/arc_intent_helper_bridge.h b/components/arc/intent_helper/arc_intent_helper_bridge.h
index a74acf0df9b7608fb1fcea455dd6647b0e5edfee..acf505ee39b8816146cd39380e86a807ef81ae43 100644
--- a/components/arc/intent_helper/arc_intent_helper_bridge.h
+++ b/components/arc/intent_helper/arc_intent_helper_bridge.h
@@ -40,6 +40,11 @@ class ArcIntentHelperBridge : public ArcService,
void OnIntentHelperInstanceReady() override;
void OnIntentHelperInstanceClosed() override;
+ // arc::IntentHelperHost
+ void OnOpenDownloads() override;
Yusuke Sato 2016/06/16 23:42:18 Does this compile? Line 50 seems to have the same
zentaro 2016/06/17 21:42:25 I merged incorrectly before upload. Fixed now.
+ void OnIntentFiltersUpdated(
Yusuke Sato 2016/06/16 23:42:18 Move down to line 50?
zentaro 2016/06/17 21:42:25 As above.
+ mojo::Array<mojom::IntentFilterPtr> intent_filters) override;
+
// arc::mojom::IntentHelperHost
void OnIconInvalidated(const mojo::String& package_name) override;
void OnOpenDownloads() override;

Powered by Google App Engine
This is Rietveld 408576698