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

Side by Side Diff: third_party/WebKit/Source/build/scripts/templates/InternalRuntimeFlags.h.tmpl

Issue 2822953002: Remove old wtf/ directory. (Closed)
Patch Set: Fixup *.typemap files. 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 {% from 'macros.tmpl' import license %} 1 {% from 'macros.tmpl' import license %}
2 {{license()}} 2 {{license()}}
3 3
4 #ifndef InternalRuntimeFlags_h 4 #ifndef InternalRuntimeFlags_h
5 #define InternalRuntimeFlags_h 5 #define InternalRuntimeFlags_h
6 6
7 #include "bindings/core/v8/ScriptWrappable.h" 7 #include "bindings/core/v8/ScriptWrappable.h"
8 #include "platform/RuntimeEnabledFeatures.h" 8 #include "platform/RuntimeEnabledFeatures.h"
9 #include "platform/heap/Handle.h" 9 #include "platform/heap/Handle.h"
10 #include "wtf/PassRefPtr.h" 10 #include "platform/wtf/PassRefPtr.h"
11 #include "wtf/RefPtr.h" 11 #include "platform/wtf/RefPtr.h"
12 #include "wtf/RefCounted.h" 12 #include "platform/wtf/RefCounted.h"
13 13
14 namespace blink { 14 namespace blink {
15 15
16 class InternalRuntimeFlags : 16 class InternalRuntimeFlags :
17 public GarbageCollected<InternalRuntimeFlags>, 17 public GarbageCollected<InternalRuntimeFlags>,
18 public ScriptWrappable { 18 public ScriptWrappable {
19 DEFINE_WRAPPERTYPEINFO(); 19 DEFINE_WRAPPERTYPEINFO();
20 public: 20 public:
21 static InternalRuntimeFlags* create() { 21 static InternalRuntimeFlags* create() {
22 return new InternalRuntimeFlags; 22 return new InternalRuntimeFlags;
(...skipping 15 matching lines...) Expand all
38 38
39 DEFINE_INLINE_TRACE() {} 39 DEFINE_INLINE_TRACE() {}
40 40
41 private: 41 private:
42 InternalRuntimeFlags() {} 42 InternalRuntimeFlags() {}
43 }; 43 };
44 44
45 } // namespace blink 45 } // namespace blink
46 46
47 #endif // InternalRuntimeFlags_h 47 #endif // InternalRuntimeFlags_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698