Index: chrome/browser/chromeos/arc/gpu_arc_video_service_host.h |
diff --git a/chrome/browser/chromeos/arc/gpu_arc_video_service_host.h b/chrome/browser/chromeos/arc/gpu_arc_video_service_host.h |
index 5a666c6b369260a8e990965eebc33e4b26150294..6ff98bd3016f39a0e1022620f8eefcd71855fce6 100644 |
--- a/chrome/browser/chromeos/arc/gpu_arc_video_service_host.h |
+++ b/chrome/browser/chromeos/arc/gpu_arc_video_service_host.h |
@@ -24,7 +24,7 @@ namespace arc { |
// process. The corresponding end "GpuArcVideoService" runs in the GPU process. |
class GpuArcVideoServiceHost : public arc::ArcService, |
public arc::ArcBridgeService::Observer, |
- public arc::VideoHost { |
+ public arc::mojom::VideoHost { |
public: |
explicit GpuArcVideoServiceHost(arc::ArcBridgeService* bridge_service); |
~GpuArcVideoServiceHost() override; |
@@ -33,20 +33,20 @@ class GpuArcVideoServiceHost : public arc::ArcService, |
void OnVideoInstanceReady() override; |
void OnVideoInstanceClosed() override; |
- // arc::VideoHost implementation. |
+ // arc::mojom::VideoHost implementation. |
void OnRequestArcVideoAcceleratorChannel( |
const OnRequestArcVideoAcceleratorChannelCallback& callback) override; |
private: |
void BindServiceAndCreateChannel( |
const OnRequestArcVideoAcceleratorChannelCallback& callback, |
- mojo::InterfacePtrInfo<arc::VideoHost> ptr_info); |
+ mojo::InterfacePtrInfo<arc::mojom::VideoHost> ptr_info); |
base::ThreadChecker thread_checker_; |
- mojo::Binding<arc::VideoHost> binding_; |
+ mojo::Binding<arc::mojom::VideoHost> binding_; |
- arc::VideoHostPtr service_ptr_; |
+ arc::mojom::VideoHostPtr service_ptr_; |
base::WeakPtrFactory<GpuArcVideoServiceHost> weak_factory_; |