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

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

Issue 2777903008: Removed deprecated WebVR functionality (Closed)
Patch Set: Another test re-baseline Created 3 years, 8 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/VRDisplayCapabilities.h
diff --git a/third_party/WebKit/Source/modules/vr/VRDisplayCapabilities.h b/third_party/WebKit/Source/modules/vr/VRDisplayCapabilities.h
index 22d485f95146d3ff9980b35b13148a03fc130635..f02725463b6de33f8c363ce51f49146872b1b2a7 100644
--- a/third_party/WebKit/Source/modules/vr/VRDisplayCapabilities.h
+++ b/third_party/WebKit/Source/modules/vr/VRDisplayCapabilities.h
@@ -19,13 +19,11 @@ class VRDisplayCapabilities final
public:
VRDisplayCapabilities();
- bool hasOrientation() const { return m_hasOriention; }
bool hasPosition() const { return m_hasPosition; }
bool hasExternalDisplay() const { return m_hasExternalDisplay; }
bool canPresent() const { return m_canPresent; }
unsigned maxLayers() const { return m_maxLayers; }
- void setHasOrientation(bool value) { m_hasOriention = value; }
void setHasPosition(bool value) { m_hasPosition = value; }
void setHasExternalDisplay(bool value) { m_hasExternalDisplay = value; }
void setCanPresent(bool value) { m_canPresent = value; }
@@ -34,7 +32,6 @@ class VRDisplayCapabilities final
DECLARE_VIRTUAL_TRACE()
private:
- bool m_hasOriention;
bool m_hasPosition;
bool m_hasExternalDisplay;
bool m_canPresent;
« no previous file with comments | « third_party/WebKit/Source/modules/vr/VRDisplay.idl ('k') | third_party/WebKit/Source/modules/vr/VRDisplayCapabilities.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698