Chromium Code Reviews| Index: content/renderer/wake_lock/wake_lock_dispatcher.h |
| diff --git a/content/renderer/wake_lock/wake_lock_dispatcher.h b/content/renderer/wake_lock/wake_lock_dispatcher.h |
| index 5922318a73ebf9e8381aff9e68b491c45eebb31a..b16876b84a001a55d0dba4682bc4b126e2df352f 100644 |
| --- a/content/renderer/wake_lock/wake_lock_dispatcher.h |
| +++ b/content/renderer/wake_lock/wake_lock_dispatcher.h |
| @@ -5,9 +5,9 @@ |
| #ifndef CONTENT_RENDERER_WAKE_LOCK_WAKE_LOCK_DISPATCHER_H_ |
| #define CONTENT_RENDERER_WAKE_LOCK_WAKE_LOCK_DISPATCHER_H_ |
| -#include "content/common/wake_lock_service.mojom.h" |
| #include "content/public/renderer/render_frame_observer.h" |
| #include "third_party/WebKit/public/platform/modules/wake_lock/WebWakeLockClient.h" |
| +#include "third_party/WebKit/public/platform/modules/wake_lock/wake_lock_service.mojom.h" |
| namespace content { |
| @@ -23,7 +23,7 @@ class WakeLockDispatcher : public RenderFrameObserver, |
| // WebWakeLockClient implementation. |
| void requestKeepScreenAwake(bool keepScreenAwake) override; |
| - mojom::WakeLockServicePtr wake_lock_service_; |
| + blink::mojom::WakeLockServicePtr wake_lock_service_; |
|
esprehn
2016/04/11 22:01:49
is this the naming convention others are using too
mcasas
2016/04/11 22:09:12
I think so, moving mojom's to blink shifts them
f
|
| }; |
| } // namespace content |