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

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

Issue 2167643003: Refactored VRService interaction and added VRServiceClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed issues that showed up on an Android compile Created 4 years, 5 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: third_party/WebKit/Source/modules/vr/NavigatorVR.h
diff --git a/third_party/WebKit/Source/modules/vr/NavigatorVR.h b/third_party/WebKit/Source/modules/vr/NavigatorVR.h
index aab59c66bf625d77914d6348df406901c01834ba..c83745a77b8125b5196512b5607c1c35eaab4eb7 100644
--- a/third_party/WebKit/Source/modules/vr/NavigatorVR.h
+++ b/third_party/WebKit/Source/modules/vr/NavigatorVR.h
@@ -19,7 +19,6 @@ namespace blink {
class Document;
class Navigator;
class VRController;
-class VRDisplayCollection;
class MODULES_EXPORT NavigatorVR final : public GarbageCollectedFinalized<NavigatorVR>, public Supplement<Navigator>, public DOMWindowProperty {
USING_GARBAGE_COLLECTED_MIXIN(NavigatorVR);
@@ -45,7 +44,7 @@ private:
static const char* supplementName();
- Member<VRDisplayCollection> m_displays;
+ Member<VRController> m_controller;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698