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

Unified Diff: third_party/WebKit/Source/modules/vr/VRController.h

Issue 2041003003: Moved vr_service.mojom from blink to device (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed missing mojo dependency in gyp builds Created 4 years, 6 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 | « third_party/WebKit/Source/modules/vr/DEPS ('k') | third_party/WebKit/Source/modules/vr/VRController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/vr/VRController.h
diff --git a/third_party/WebKit/Source/modules/vr/VRController.h b/third_party/WebKit/Source/modules/vr/VRController.h
index 112018e86654214e8ccd55dcdcd2927c9bc6fa8f..32c984cd77937391708ab07aec2322d5969abf4b 100644
--- a/third_party/WebKit/Source/modules/vr/VRController.h
+++ b/third_party/WebKit/Source/modules/vr/VRController.h
@@ -6,9 +6,9 @@
#define VRController_h
#include "core/frame/LocalFrameLifecycleObserver.h"
+#include "device/vr/vr_service.mojom-blink.h"
#include "modules/ModulesExport.h"
#include "platform/Supplementable.h"
-#include "public/platform/modules/vr/vr_service.mojom-blink.h"
#include "wtf/Deque.h"
#include <memory>
@@ -29,7 +29,7 @@ public:
void getDisplays(std::unique_ptr<VRGetDevicesCallback>);
- mojom::blink::VRPosePtr getPose(unsigned index);
+ device::blink::VRPosePtr getPose(unsigned index);
void resetPose(unsigned index);
@@ -46,10 +46,10 @@ private:
void willDetachFrameHost() override;
// Binding callbacks.
- void onGetDisplays(mojo::WTFArray<mojom::blink::VRDisplayPtr>);
+ void onGetDisplays(mojo::WTFArray<device::blink::VRDisplayPtr>);
Deque<std::unique_ptr<VRGetDevicesCallback>> m_pendingGetDevicesCallbacks;
- mojom::blink::VRServicePtr m_service;
+ device::blink::VRServicePtr m_service;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/modules/vr/DEPS ('k') | third_party/WebKit/Source/modules/vr/VRController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698