| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "web/SuspendableScriptExecutor.h" | 5 #include "core/frame/SuspendableScriptExecutor.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 #include "bindings/core/v8/ScriptController.h" | 8 #include "bindings/core/v8/ScriptController.h" |
| 9 #include "bindings/core/v8/ScriptSourceCode.h" | 9 #include "bindings/core/v8/ScriptSourceCode.h" |
| 10 #include "bindings/core/v8/V8Binding.h" | 10 #include "bindings/core/v8/V8Binding.h" |
| 11 #include "bindings/core/v8/V8PersistentValueVector.h" | 11 #include "bindings/core/v8/V8PersistentValueVector.h" |
| 12 #include "bindings/core/v8/WindowProxy.h" | 12 #include "bindings/core/v8/WindowProxy.h" |
| 13 #include "core/dom/Document.h" | 13 #include "core/dom/Document.h" |
| 14 #include "core/dom/DocumentUserGestureToken.h" | 14 #include "core/dom/DocumentUserGestureToken.h" |
| 15 #include "core/dom/TaskRunnerHelper.h" | 15 #include "core/dom/TaskRunnerHelper.h" |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 keep_alive_.Clear(); | 243 keep_alive_.Clear(); |
| 244 Stop(); | 244 Stop(); |
| 245 } | 245 } |
| 246 | 246 |
| 247 DEFINE_TRACE(SuspendableScriptExecutor) { | 247 DEFINE_TRACE(SuspendableScriptExecutor) { |
| 248 visitor->Trace(executor_); | 248 visitor->Trace(executor_); |
| 249 SuspendableTimer::Trace(visitor); | 249 SuspendableTimer::Trace(visitor); |
| 250 } | 250 } |
| 251 | 251 |
| 252 } // namespace blink | 252 } // namespace blink |
| OLD | NEW |