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

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

Issue 2331223002: Added allowvr attribute to iframes and vrEnabled to Document (Closed)
Patch Set: Rebase and moved vrEnabled from navigator to document Created 4 years, 3 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 CSSOMTypes_h 5 #ifndef DocumentVR_h
6 #define CSSOMTypes_h 6 #define DocumentVR_h
7 7
8 #include "core/CSSPropertyNames.h"
9 #include "wtf/Allocator.h" 8 #include "wtf/Allocator.h"
10 9
11 namespace blink { 10 namespace blink {
12 11
13 class CSSStyleValue; 12 class Document;
14 13
15 class CSSOMTypes { 14 class DocumentVR {
16 STATIC_ONLY(CSSOMTypes); 15 STATIC_ONLY(DocumentVR);
17
18 public: 16 public:
19 static bool propertyCanTake(CSSPropertyID, const CSSStyleValue&); 17 static bool vrEnabled(Document&);
20 }; 18 };
21 19
22 } // namespace blink 20 } // namespace blink
23 21
24 #endif 22 #endif // DocumentVR_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698