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

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

Issue 1851743002: Simplify Supplementables post Oilpan. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix component build Created 4 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/clipboard/DataObject.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 {% from "macros.tmpl" import license %} 1 {% from "macros.tmpl" import license %}
2 {{ license() }} 2 {{ license() }}
3 3
4 #ifndef InternalSettingsGenerated_h 4 #ifndef InternalSettingsGenerated_h
5 #define InternalSettingsGenerated_h 5 #define InternalSettingsGenerated_h
6 6
7 #include "bindings/core/v8/ScriptWrappable.h" 7 #include "bindings/core/v8/ScriptWrappable.h"
8 #include "platform/RefCountedSupplement.h"
9 #include "platform/heap/Handle.h" 8 #include "platform/heap/Handle.h"
10 #include "wtf/PassRefPtr.h" 9 #include "wtf/PassRefPtr.h"
11 #include "wtf/RefCounted.h" 10 #include "wtf/RefCounted.h"
12 #include "wtf/text/WTFString.h" 11 #include "wtf/text/WTFString.h"
13 12
14 namespace blink { 13 namespace blink {
15 14
16 class Page; 15 class Page;
17 16
18 class InternalSettingsGenerated : public RefCountedWillBeGarbageCollectedFinaliz ed<InternalSettingsGenerated>, public ScriptWrappable { 17 class InternalSettingsGenerated : public RefCountedWillBeGarbageCollectedFinaliz ed<InternalSettingsGenerated>, public ScriptWrappable {
(...skipping 12 matching lines...) Expand all
31 RawPtrWillBeMember<Page> m_page; 30 RawPtrWillBeMember<Page> m_page;
32 31
33 {% for setting in settings if setting.type|to_idl_type %} 32 {% for setting in settings if setting.type|to_idl_type %}
34 {{setting.type}} m_{{setting.name}}; 33 {{setting.type}} m_{{setting.name}};
35 {% endfor %} 34 {% endfor %}
36 }; 35 };
37 36
38 } // namespace blink 37 } // namespace blink
39 38
40 #endif // InternalSettingsGenerated_h 39 #endif // InternalSettingsGenerated_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/clipboard/DataObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698