Chromium Code Reviews| Index: Source/core/dom/ScriptRunner.h |
| diff --git a/Source/core/dom/ScriptRunner.h b/Source/core/dom/ScriptRunner.h |
| index b47139c86298105a835a442ce1ac0e1d07cc64aa..1f9a4703b09638d8a19bd7a144b332d26ceb1951 100644 |
| --- a/Source/core/dom/ScriptRunner.h |
| +++ b/Source/core/dom/ScriptRunner.h |
| @@ -39,6 +39,7 @@ class ScriptResource; |
| class Document; |
| class PendingScript; |
| class ScriptLoader; |
| +class Visitor; |
| class ScriptRunner { |
|
Mads Ager (chromium)
2014/05/26 13:55:36
I think we could move ScriptRunner to the oilpan h
sof
2014/05/27 08:31:04
Yes, moving ScriptRunner is doable and easier than
|
| WTF_MAKE_NONCOPYABLE(ScriptRunner); WTF_MAKE_FAST_ALLOCATED; |
| @@ -54,6 +55,8 @@ public: |
| void notifyScriptReady(ScriptLoader*, ExecutionType); |
| void notifyScriptLoadError(ScriptLoader*, ExecutionType); |
| + void trace(Visitor*); |
| + |
| private: |
| explicit ScriptRunner(Document*); |