| 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);
|
| };
|
|
|