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

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

Issue 2940933003: DO NOT SUBMIT results of new clang-format (Closed)
Patch Set: Created 3 years, 6 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 VRDisplay_h 5 #ifndef VRDisplay_h
6 #define VRDisplay_h 6 #define VRDisplay_h
7 7
8 #include "core/dom/Document.h" 8 #include "core/dom/Document.h"
9 #include "core/dom/FrameRequestCallback.h" 9 #include "core/dom/FrameRequestCallback.h"
10 #include "core/dom/SuspendableObject.h" 10 #include "core/dom/SuspendableObject.h"
11 #include "core/events/EventTarget.h" 11 #include "core/events/EventTarget.h"
12 #include "device/vr/vr_service.mojom-blink.h" 12 #include "device/vr/vr_service.mojom-blink.h"
13 #include "modules/vr/VRDisplayCapabilities.h" 13 #include "modules/vr/VRDisplayCapabilities.h"
14 #include "modules/vr/VRLayer.h" 14 #include "modules/vr/VRLayer.h"
15 #include "mojo/public/cpp/bindings/binding.h" 15 #include "mojo/public/cpp/bindings/binding.h"
16 #include "platform/Timer.h" 16 #include "platform/Timer.h"
17 #include "platform/heap/Handle.h" 17 #include "platform/heap/Handle.h"
18 #include "platform/wtf/Forward.h" 18 #include "platform/wtf/Forward.h"
19 #include "platform/wtf/text/WTFString.h" 19 #include "platform/wtf/text/WTFString.h"
20 #include "public/platform/WebGraphicsContext3DProvider.h" 20 #include "public/platform/WebGraphicsContext3DProvider.h"
21 21
22 namespace gpu { 22 namespace gpu {
23 namespace gles2 { 23 namespace gles2 {
24 class GLES2Interface; 24 class GLES2Interface;
25 } 25 }
26 } 26 } // namespace gpu
27 27
28 namespace blink { 28 namespace blink {
29 29
30 class NavigatorVR; 30 class NavigatorVR;
31 class ScriptedAnimationController; 31 class ScriptedAnimationController;
32 class VRController; 32 class VRController;
33 class VREyeParameters; 33 class VREyeParameters;
34 class VRFrameData; 34 class VRFrameData;
35 class VRStageParameters; 35 class VRStageParameters;
36 36
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 kRequestDenied = 12, 234 kRequestDenied = 12,
235 kFullscreenNotEnabled = 13, 235 kFullscreenNotEnabled = 13,
236 kPresentationResultMax, // Must be last member of enum. 236 kPresentationResultMax, // Must be last member of enum.
237 }; 237 };
238 238
239 void ReportPresentationResult(PresentationResult); 239 void ReportPresentationResult(PresentationResult);
240 240
241 } // namespace blink 241 } // namespace blink
242 242
243 #endif // VRDisplay_h 243 #endif // VRDisplay_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698