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

Side by Side Diff: third_party/WebKit/Source/core/dom/ExecutionContext.cpp

Issue 2856773003: Remove deprecated ExecutionContextTask (Closed)
Patch Set: restore private / rebase Created 3 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 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * Copyright (C) 2012 Google Inc. All Rights Reserved. 3 * Copyright (C) 2012 Google Inc. All Rights Reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 12 matching lines...) Expand all
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 * 25 *
26 */ 26 */
27 27
28 #include "core/dom/ExecutionContext.h" 28 #include "core/dom/ExecutionContext.h"
29 29
30 #include <memory> 30 #include <memory>
31 #include "bindings/core/v8/SourceLocation.h" 31 #include "bindings/core/v8/SourceLocation.h"
32 #include "bindings/core/v8/V8BindingForCore.h" 32 #include "bindings/core/v8/V8BindingForCore.h"
33 #include "core/dom/ExecutionContextTask.h"
34 #include "core/dom/SuspendableObject.h" 33 #include "core/dom/SuspendableObject.h"
35 #include "core/dom/TaskRunnerHelper.h" 34 #include "core/dom/TaskRunnerHelper.h"
36 #include "core/events/ErrorEvent.h" 35 #include "core/events/ErrorEvent.h"
37 #include "core/events/EventTarget.h" 36 #include "core/events/EventTarget.h"
38 #include "core/frame/UseCounter.h" 37 #include "core/frame/UseCounter.h"
39 #include "core/html/PublicURLManager.h" 38 #include "core/html/PublicURLManager.h"
40 #include "core/inspector/ConsoleMessage.h" 39 #include "core/inspector/ConsoleMessage.h"
41 #include "core/probe/CoreProbes.h" 40 #include "core/probe/CoreProbes.h"
42 #include "core/workers/WorkerGlobalScope.h" 41 #include "core/workers/WorkerGlobalScope.h"
43 #include "core/workers/WorkerThread.h" 42 #include "core/workers/WorkerThread.h"
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 } 238 }
240 239
241 DEFINE_TRACE(ExecutionContext) { 240 DEFINE_TRACE(ExecutionContext) {
242 visitor->Trace(public_url_manager_); 241 visitor->Trace(public_url_manager_);
243 visitor->Trace(pending_exceptions_); 242 visitor->Trace(pending_exceptions_);
244 ContextLifecycleNotifier::Trace(visitor); 243 ContextLifecycleNotifier::Trace(visitor);
245 Supplementable<ExecutionContext>::Trace(visitor); 244 Supplementable<ExecutionContext>::Trace(visitor);
246 } 245 }
247 246
248 } // namespace blink 247 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/ExecutionContext.h ('k') | third_party/WebKit/Source/core/dom/ExecutionContextTask.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698