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

Unified Diff: Source/modules/vr/VRPositionState.cpp

Issue 1106263003: Removing blink::prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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
« no previous file with comments | « Source/modules/vr/VRPositionState.h ('k') | Source/modules/webaudio/OfflineAudioDestinationNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/vr/VRPositionState.cpp
diff --git a/Source/modules/vr/VRPositionState.cpp b/Source/modules/vr/VRPositionState.cpp
index 3146ca8b7778f094915171bfcd2e461ccf39ad67..ab9d93bc5f637d83d5305c2cd601497bf53ed743 100644
--- a/Source/modules/vr/VRPositionState.cpp
+++ b/Source/modules/vr/VRPositionState.cpp
@@ -9,13 +9,13 @@ namespace blink {
namespace {
-DOMPoint* VecToDomPoint(const blink::WebVRVector4& vec, bool valid)
+DOMPoint* VecToDomPoint(const WebVRVector4& vec, bool valid)
{
if (valid)
return DOMPoint::create(vec.x, vec.y, vec.z, vec.w);
return nullptr;
}
-DOMPoint* VecToDomPoint(const blink::WebVRVector3& vec, bool valid)
+DOMPoint* VecToDomPoint(const WebVRVector3& vec, bool valid)
{
if (valid)
return DOMPoint::create(vec.x, vec.y, vec.z, 0.0);
@@ -29,7 +29,7 @@ VRPositionState::VRPositionState()
{
}
-void VRPositionState::setState(const blink::WebHMDSensorState &state)
+void VRPositionState::setState(const WebHMDSensorState &state)
{
m_timeStamp = state.timestamp;
m_orientation = VecToDomPoint(state.orientation, state.flags & WebVRSensorStateOrientation);
« no previous file with comments | « Source/modules/vr/VRPositionState.h ('k') | Source/modules/webaudio/OfflineAudioDestinationNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698