| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |