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

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

Issue 2511883003: Use mojo typemaps to simplify arc::IntentFilter::IntentFilter() (Closed)
Patch Set: 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/local_activity_resolver.h
diff --git a/components/arc/intent_helper/local_activity_resolver.h b/components/arc/intent_helper/local_activity_resolver.h
index ff3715659aa6ce0cfc7fd72960ba76b5e551b62b..59e05b6c1e9c586368c1f450c37e171373d9f5b3 100644
--- a/components/arc/intent_helper/local_activity_resolver.h
+++ b/components/arc/intent_helper/local_activity_resolver.h
@@ -16,6 +16,8 @@ class GURL;
namespace arc {
+class IntentFilter;
Yusuke Sato 2016/11/30 21:47:16 seems unnecessary (see L13 & L42)
yoshiki 2016/12/02 19:34:28 Done.
+
class LocalActivityResolver : public base::RefCounted<LocalActivityResolver> {
public:
LocalActivityResolver();
@@ -29,7 +31,7 @@ class LocalActivityResolver : public base::RefCounted<LocalActivityResolver> {
bool ShouldChromeHandleUrl(const GURL& url);
// Called when the list of intent filters on ARC side is updated.
- void UpdateIntentFilters(std::vector<mojom::IntentFilterPtr> intent_filters);
+ void UpdateIntentFilters(std::vector<IntentFilter> intent_filters);
private:
friend class base::RefCounted<LocalActivityResolver>;

Powered by Google App Engine
This is Rietveld 408576698