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

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

Issue 2059573002: Add initial stub implementation of LocalActivityResolver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change default to true. 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
« no previous file with comments | « components/arc/intent_helper/local_activity_resolver.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/intent_helper/local_activity_resolver.cc
diff --git a/components/arc/intent_helper/local_activity_resolver.cc b/components/arc/intent_helper/local_activity_resolver.cc
new file mode 100644
index 0000000000000000000000000000000000000000..568cd8829435d14068bb497ac75da576645f16bf
--- /dev/null
+++ b/components/arc/intent_helper/local_activity_resolver.cc
@@ -0,0 +1,16 @@
+// 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.
+
+#include "components/arc/intent_helper/local_activity_resolver.h"
+
+#include "url/gurl.h"
+
+namespace arc {
+
+bool LocalActivityResolver::ShouldChromeHandleUrl(const GURL& url) {
+ // Stub implementation for now.
+ return true;
+}
+
+} // namespace arc
« no previous file with comments | « components/arc/intent_helper/local_activity_resolver.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698