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

Side by Side Diff: third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp

Issue 2843503002: scheduler: Move WebFrameScheduler and WebScheduler into Blink (Closed)
Patch Set: Build fix Created 3 years, 7 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) 2009, 2011 Google Inc. All Rights Reserved. 3 * Copyright (C) 2009, 2011 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 #include "core/workers/WorkerLoaderProxy.h" 46 #include "core/workers/WorkerLoaderProxy.h"
47 #include "core/workers/WorkerLocation.h" 47 #include "core/workers/WorkerLocation.h"
48 #include "core/workers/WorkerNavigator.h" 48 #include "core/workers/WorkerNavigator.h"
49 #include "core/workers/WorkerReportingProxy.h" 49 #include "core/workers/WorkerReportingProxy.h"
50 #include "core/workers/WorkerScriptLoader.h" 50 #include "core/workers/WorkerScriptLoader.h"
51 #include "core/workers/WorkerThread.h" 51 #include "core/workers/WorkerThread.h"
52 #include "platform/CrossThreadFunctional.h" 52 #include "platform/CrossThreadFunctional.h"
53 #include "platform/InstanceCounters.h" 53 #include "platform/InstanceCounters.h"
54 #include "platform/loader/fetch/MemoryCache.h" 54 #include "platform/loader/fetch/MemoryCache.h"
55 #include "platform/network/ContentSecurityPolicyParsers.h" 55 #include "platform/network/ContentSecurityPolicyParsers.h"
56 #include "platform/scheduler/child/web_scheduler.h"
56 #include "platform/weborigin/KURL.h" 57 #include "platform/weborigin/KURL.h"
57 #include "platform/weborigin/SecurityOrigin.h" 58 #include "platform/weborigin/SecurityOrigin.h"
58 #include "platform/wtf/Assertions.h" 59 #include "platform/wtf/Assertions.h"
59 #include "platform/wtf/RefPtr.h" 60 #include "platform/wtf/RefPtr.h"
60 #include "public/platform/Platform.h" 61 #include "public/platform/Platform.h"
61 #include "public/platform/WebScheduler.h"
62 #include "public/platform/WebURLRequest.h" 62 #include "public/platform/WebURLRequest.h"
63 63
64 namespace blink { 64 namespace blink {
65 namespace { 65 namespace {
66 66
67 void RemoveURLFromMemoryCacheInternal(const KURL& url) { 67 void RemoveURLFromMemoryCacheInternal(const KURL& url) {
68 GetMemoryCache()->RemoveURLFromCache(url); 68 GetMemoryCache()->RemoveURLFromCache(url);
69 } 69 }
70 70
71 } // namespace 71 } // namespace
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 visitor->Trace(timers_); 375 visitor->Trace(timers_);
376 visitor->Trace(event_listeners_); 376 visitor->Trace(event_listeners_);
377 visitor->Trace(pending_error_events_); 377 visitor->Trace(pending_error_events_);
378 ExecutionContext::Trace(visitor); 378 ExecutionContext::Trace(visitor);
379 EventTargetWithInlineData::Trace(visitor); 379 EventTargetWithInlineData::Trace(visitor);
380 SecurityContext::Trace(visitor); 380 SecurityContext::Trace(visitor);
381 Supplementable<WorkerGlobalScope>::Trace(visitor); 381 Supplementable<WorkerGlobalScope>::Trace(visitor);
382 } 382 }
383 383
384 } // namespace blink 384 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698