Chromium Code Reviews| 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..2b58ca047a60f88d82d4adac2c093a43cd661da6 |
| --- /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 false; |
|
elijahtaylor1
2016/06/10 19:40:27
maybe the default should be true? That would allo
Yusuke Sato
2016/06/10 19:56:09
Ah true, good idea.
zentaro1
2016/06/10 20:04:26
Done.
|
| +} |
| + |
| +} // namespace arc |