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

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

Issue 1885683005: Add module suffix in .mojom files for components/arc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase only Created 4 years, 8 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/input/arc_input_bridge.cc ('k') | components/arc/metrics/arc_metrics_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 0754bf0a82103e0e89b2c8661ff4cad552021e38..eab80a854090454104d726d3e225f6b35ce71c4b 100644
--- a/components/arc/intent_helper/arc_intent_helper_bridge.h
+++ b/components/arc/intent_helper/arc_intent_helper_bridge.h
@@ -16,7 +16,7 @@ namespace arc {
// Receives intents from ARC.
class ArcIntentHelperBridge : public ArcService,
public ArcBridgeService::Observer,
- public IntentHelperHost {
+ public mojom::IntentHelperHost {
public:
explicit ArcIntentHelperBridge(ArcBridgeService* bridge_service);
~ArcIntentHelperBridge() override;
@@ -24,11 +24,11 @@ class ArcIntentHelperBridge : public ArcService,
// ArcBridgeService::Observer
void OnIntentHelperInstanceReady() override;
- // arc::IntentHelperHost
+ // arc::mojom::IntentHelperHost
void OnOpenUrl(const mojo::String& url) override;
private:
- mojo::Binding<IntentHelperHost> binding_;
+ mojo::Binding<mojom::IntentHelperHost> binding_;
DISALLOW_COPY_AND_ASSIGN(ArcIntentHelperBridge);
};
« no previous file with comments | « components/arc/input/arc_input_bridge.cc ('k') | components/arc/metrics/arc_metrics_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698