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

Unified Diff: content/browser/wake_lock/wake_lock_service_impl.h

Issue 1832813002: Add mojom module suffix in .mojom files in content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Tom's comment Created 4 years, 9 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
Index: content/browser/wake_lock/wake_lock_service_impl.h
diff --git a/content/browser/wake_lock/wake_lock_service_impl.h b/content/browser/wake_lock/wake_lock_service_impl.h
index 903f5057fa345b39b56f65189f72c3053eeaca48..19b8fa55312a5eeff9ab9791d41959f6429ef223 100644
--- a/content/browser/wake_lock/wake_lock_service_impl.h
+++ b/content/browser/wake_lock/wake_lock_service_impl.h
@@ -15,12 +15,12 @@ namespace content {
class WakeLockServiceContext;
-class WakeLockServiceImpl : public WakeLockService {
+class WakeLockServiceImpl : public mojom::WakeLockService {
public:
WakeLockServiceImpl(base::WeakPtr<WakeLockServiceContext> context,
int render_process_id,
int render_frame_id,
- mojo::InterfaceRequest<WakeLockService> request);
+ mojo::InterfaceRequest<mojom::WakeLockService> request);
~WakeLockServiceImpl() override;
// WakeLockSevice implementation.
@@ -31,7 +31,7 @@ class WakeLockServiceImpl : public WakeLockService {
base::WeakPtr<WakeLockServiceContext> context_;
const int render_process_id_;
const int render_frame_id_;
- mojo::StrongBinding<WakeLockService> binding_;
+ mojo::StrongBinding<mojom::WakeLockService> binding_;
DISALLOW_COPY_AND_ASSIGN(WakeLockServiceImpl);
};
« no previous file with comments | « content/browser/wake_lock/wake_lock_service_context.cc ('k') | content/browser/wake_lock/wake_lock_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698