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

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

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/BUILD.gn ('k') | components/arc/intent_helper/local_activity_resolver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
new file mode 100644
index 0000000000000000000000000000000000000000..0b5fcdd9d37abdb45d26539d4e586c0362ad207a
--- /dev/null
+++ b/components/arc/intent_helper/local_activity_resolver.h
@@ -0,0 +1,27 @@
+// 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_LOCAL_ACTIVITY_HELPER_H_
+#define COMPONENTS_ARC_INTENT_HELPER_LOCAL_ACTIVITY_HELPER_H_
+
+#include "base/macros.h"
+
+class GURL;
+
+namespace arc {
+
+class LocalActivityResolver {
+ public:
+ LocalActivityResolver() = default;
+ ~LocalActivityResolver() = default;
+
+ bool ShouldChromeHandleUrl(const GURL& url);
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(LocalActivityResolver);
+};
+
+} // namespace arc
+
+#endif // COMPONENTS_ARC_INTENT_HELPER_LOCAL_ACTIVITY_HELPER_H_
« no previous file with comments | « components/arc/BUILD.gn ('k') | components/arc/intent_helper/local_activity_resolver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698