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

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

Issue 344593002: Qualify RuntimeEnabledFeatures.h and remove unnecessary include dir. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebaseline Created 6 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 {% 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 "RuntimeEnabledFeatures.h" 7 #include "platform/RuntimeEnabledFeatures.h"
8 #include "platform/heap/Handle.h" 8 #include "platform/heap/Handle.h"
9 #include "wtf/PassRefPtr.h" 9 #include "wtf/PassRefPtr.h"
10 #include "wtf/RefPtr.h" 10 #include "wtf/RefPtr.h"
11 #include "wtf/RefCounted.h" 11 #include "wtf/RefCounted.h"
12 12
13 namespace WebCore { 13 namespace WebCore {
14 14
15 class InternalRuntimeFlags : public RefCountedWillBeGarbageCollected<InternalRun timeFlags> { 15 class InternalRuntimeFlags : public RefCountedWillBeGarbageCollected<InternalRun timeFlags> {
16 public: 16 public:
17 static PassRefPtrWillBeRawPtr<InternalRuntimeFlags> create() 17 static PassRefPtrWillBeRawPtr<InternalRuntimeFlags> create()
(...skipping 15 matching lines...) Expand all
33 33
34 void trace(Visitor*) { } 34 void trace(Visitor*) { }
35 35
36 private: 36 private:
37 InternalRuntimeFlags() { } 37 InternalRuntimeFlags() { }
38 }; 38 };
39 39
40 } // namespace WebCore 40 } // namespace WebCore
41 41
42 #endif // InternalRuntimeFlags_h 42 #endif // InternalRuntimeFlags_h
OLDNEW
« no previous file with comments | « Source/build/scripts/templates/EventFactory.cpp.tmpl ('k') | Source/build/scripts/templates/RuntimeEnabledFeatures.cpp.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698