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

Side by Side Diff: third_party/WebKit/Source/modules/vr/NavigatorVR.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 NavigatorVR_h 5 #ifndef NavigatorVR_h
6 #define NavigatorVR_h 6 #define NavigatorVR_h
7 7
8 #include "bindings/core/v8/ScriptPromise.h" 8 #include "bindings/core/v8/ScriptPromise.h"
9 #include "core/frame/LocalDOMWindow.h" 9 #include "core/frame/LocalDOMWindow.h"
10 #include "core/frame/Navigator.h" 10 #include "core/frame/Navigator.h"
11 #include "core/page/FocusChangedObserver.h" 11 #include "core/page/FocusChangedObserver.h"
12 #include "modules/ModulesExport.h" 12 #include "modules/ModulesExport.h"
13 #include "modules/vr/VRDisplay.h" 13 #include "modules/vr/VRDisplay.h"
14 #include "modules/vr/VRDisplayEvent.h" 14 #include "modules/vr/VRDisplayEvent.h"
15 #include "platform/Supplementable.h" 15 #include "platform/Supplementable.h"
16 #include "platform/heap/Handle.h" 16 #include "platform/heap/Handle.h"
17 #include "platform/wtf/Noncopyable.h"
17 #include "public/platform/WebVector.h" 18 #include "public/platform/WebVector.h"
18 #include "wtf/Noncopyable.h"
19 19
20 namespace blink { 20 namespace blink {
21 21
22 class Document; 22 class Document;
23 class Navigator; 23 class Navigator;
24 class VRController; 24 class VRController;
25 25
26 class MODULES_EXPORT NavigatorVR final 26 class MODULES_EXPORT NavigatorVR final
27 : public GarbageCollectedFinalized<NavigatorVR>, 27 : public GarbageCollectedFinalized<NavigatorVR>,
28 public Supplement<Navigator>, 28 public Supplement<Navigator>,
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 Member<VRController> controller_; 72 Member<VRController> controller_;
73 73
74 // Whether this page is listening for vrdisplayactivate event. 74 // Whether this page is listening for vrdisplayactivate event.
75 bool listening_for_activate_ = false; 75 bool listening_for_activate_ = false;
76 bool focused_ = false; 76 bool focused_ = false;
77 }; 77 };
78 78
79 } // namespace blink 79 } // namespace blink
80 80
81 #endif // NavigatorVR_h 81 #endif // NavigatorVR_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698