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

Unified Diff: third_party/WebKit/Source/modules/vr/VRPose.cpp

Issue 2470233009: WTF/std normalization: replace WTF::Vector::first() with ::front() (Closed)
Patch Set: rebase Created 4 years, 1 month 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/VRPose.cpp
diff --git a/third_party/WebKit/Source/modules/vr/VRPose.cpp b/third_party/WebKit/Source/modules/vr/VRPose.cpp
index 8007fc5cc4c9778d1406c5e3dd0787df620b5870..2acd0949998cdbf44a3619ce7532aee30e44e1b6 100644
--- a/third_party/WebKit/Source/modules/vr/VRPose.cpp
+++ b/third_party/WebKit/Source/modules/vr/VRPose.cpp
@@ -13,7 +13,7 @@ DOMFloat32Array* mojoArrayToFloat32Array(
if (!vec)
return nullptr;
- return DOMFloat32Array::create(&(vec.value().first()), vec.value().size());
+ return DOMFloat32Array::create(&(vec.value().front()), vec.value().size());
}
} // namespace
« no previous file with comments | « third_party/WebKit/Source/modules/nfc/NFC.cpp ('k') | third_party/WebKit/Source/modules/vr/VRStageParameters.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698