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

Side by Side Diff: third_party/WebKit/Source/modules/vr/VRFieldOfView.h

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef VRFieldOfView_h 5 #ifndef VRFieldOfView_h
6 #define VRFieldOfView_h 6 #define VRFieldOfView_h
7 7
8 #include "platform/heap/Handle.h" 8 #include "platform/heap/Handle.h"
9 #include "wtf/Forward.h" 9 #include "platform/wtf/Forward.h"
10 10
11 namespace blink { 11 namespace blink {
12 12
13 class VRFieldOfView final : public GarbageCollected<VRFieldOfView> { 13 class VRFieldOfView final : public GarbageCollected<VRFieldOfView> {
14 public: 14 public:
15 VRFieldOfView() 15 VRFieldOfView()
16 : up_degrees_(0.0), 16 : up_degrees_(0.0),
17 down_degrees_(0.0), 17 down_degrees_(0.0),
18 left_degrees_(0.0), 18 left_degrees_(0.0),
19 right_degrees_(0.0) {} 19 right_degrees_(0.0) {}
(...skipping 28 matching lines...) Expand all
48 private: 48 private:
49 double up_degrees_; 49 double up_degrees_;
50 double down_degrees_; 50 double down_degrees_;
51 double left_degrees_; 51 double left_degrees_;
52 double right_degrees_; 52 double right_degrees_;
53 }; 53 };
54 54
55 } // namespace blink 55 } // namespace blink
56 56
57 #endif // VRFieldOfView_h 57 #endif // VRFieldOfView_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/vr/VREyeParameters.h ('k') | third_party/WebKit/Source/modules/vr/VRFrameData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698