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

Unified Diff: chrome/gpu/gpu_arc_video_service.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 | « chrome/gpu/chrome_content_gpu_client.cc ('k') | chrome/gpu/gpu_arc_video_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/gpu/gpu_arc_video_service.h
diff --git a/chrome/gpu/gpu_arc_video_service.h b/chrome/gpu/gpu_arc_video_service.h
index 951eb6e851bba6d47b0c133b17d5e3e047eb901f..0905d7abd09f0b93503689c7102f8bd94c4068df 100644
--- a/chrome/gpu/gpu_arc_video_service.h
+++ b/chrome/gpu/gpu_arc_video_service.h
@@ -20,12 +20,13 @@ namespace arc {
//
// For each creation request from GpuArcVideoServiceHost, GpuArcVideoService
// will create a new IPC channel.
-class GpuArcVideoService : public ::arc::VideoHost {
+class GpuArcVideoService : public ::arc::mojom::VideoHost {
public:
class AcceleratorStub;
- // |request| is mojo interface request of arc::VideoHost.
- explicit GpuArcVideoService(mojo::InterfaceRequest<::arc::VideoHost> request);
+ // |request| is mojo interface request of arc::mojom::VideoHost.
+ explicit GpuArcVideoService(
+ mojo::InterfaceRequest<::arc::mojom::VideoHost> request);
// Upon deletion, all ArcVideoAccelerator will be deleted and the associated
// IPC channels are closed.
@@ -35,14 +36,14 @@ class GpuArcVideoService : public ::arc::VideoHost {
void RemoveClient(AcceleratorStub* stub);
private:
- // arc::VideoHost implementation.
+ // arc::mojom::VideoHost implementation.
void OnRequestArcVideoAcceleratorChannel(
const OnRequestArcVideoAcceleratorChannelCallback& callback) override;
base::ThreadChecker thread_checker_;
- // Binding of arc::VideoHost. It also takes ownership of |this|.
- mojo::StrongBinding<::arc::VideoHost> binding_;
+ // Binding of arc::mojom::VideoHost. It also takes ownership of |this|.
+ mojo::StrongBinding<::arc::mojom::VideoHost> binding_;
// Bookkeeping all accelerator stubs.
std::map<AcceleratorStub*, std::unique_ptr<AcceleratorStub>>
« no previous file with comments | « chrome/gpu/chrome_content_gpu_client.cc ('k') | chrome/gpu/gpu_arc_video_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698