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

Unified Diff: content/renderer/vr/vr_dispatcher.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
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | content/renderer/vr/vr_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/vr/vr_dispatcher.h
diff --git a/content/renderer/vr/vr_dispatcher.h b/content/renderer/vr/vr_dispatcher.h
index b027d05be746fccf737b6579ec28e0946bc295db..7e2f422a051a22d84c819041a37348a95c8c6e49 100644
--- a/content/renderer/vr/vr_dispatcher.h
+++ b/content/renderer/vr/vr_dispatcher.h
@@ -33,20 +33,20 @@ class VRDispatcher : NON_EXPORTED_BASE(public blink::WebVRClient) {
private:
// Helper method that returns an initialized PermissionServicePtr.
- VRServicePtr& GetVRServicePtr();
+ mojom::VRServicePtr& GetVRServicePtr();
// Callback handlers
void OnGetDevices(int request_id,
- const mojo::Array<VRDeviceInfoPtr>& devices);
+ const mojo::Array<mojom::VRDeviceInfoPtr>& devices);
static void OnGetSensorState(blink::WebHMDSensorState* state,
- const VRSensorStatePtr& mojo_state);
+ const mojom::VRSensorStatePtr& mojo_state);
// Tracks requests sent to browser to match replies with callbacks.
// Owns callback objects.
IDMap<blink::WebVRGetDevicesCallback, IDMapOwnPointer> pending_requests_;
ServiceRegistry* service_registry_;
- VRServicePtr vr_service_;
+ mojom::VRServicePtr vr_service_;
DISALLOW_COPY_AND_ASSIGN(VRDispatcher);
};
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | content/renderer/vr/vr_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698