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

Side by Side Diff: content/renderer/render_thread_impl.cc

Issue 2807243003: [scheduler] Remove WorkerScheduler from public API. (Closed)
Patch Set: Created 3 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/platform/scheduler/child/compositor_worker_scheduler.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 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/renderer/render_thread_impl.h" 5 #include "content/renderer/render_thread_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <limits> 8 #include <limits>
9 #include <map> 9 #include <map>
10 #include <utility> 10 #include <utility>
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 #include "services/ui/public/cpp/gpu/context_provider_command_buffer.h" 148 #include "services/ui/public/cpp/gpu/context_provider_command_buffer.h"
149 #include "services/ui/public/interfaces/constants.mojom.h" 149 #include "services/ui/public/interfaces/constants.mojom.h"
150 #include "skia/ext/event_tracer_impl.h" 150 #include "skia/ext/event_tracer_impl.h"
151 #include "skia/ext/skia_memory_dump_provider.h" 151 #include "skia/ext/skia_memory_dump_provider.h"
152 #include "third_party/WebKit/public/platform/WebCache.h" 152 #include "third_party/WebKit/public/platform/WebCache.h"
153 #include "third_party/WebKit/public/platform/WebImageGenerator.h" 153 #include "third_party/WebKit/public/platform/WebImageGenerator.h"
154 #include "third_party/WebKit/public/platform/WebMemoryCoordinator.h" 154 #include "third_party/WebKit/public/platform/WebMemoryCoordinator.h"
155 #include "third_party/WebKit/public/platform/WebNetworkStateNotifier.h" 155 #include "third_party/WebKit/public/platform/WebNetworkStateNotifier.h"
156 #include "third_party/WebKit/public/platform/WebString.h" 156 #include "third_party/WebKit/public/platform/WebString.h"
157 #include "third_party/WebKit/public/platform/WebThread.h" 157 #include "third_party/WebKit/public/platform/WebThread.h"
158 #include "third_party/WebKit/public/platform/scheduler/child/compositor_worker_s cheduler.h"
159 #include "third_party/WebKit/public/platform/scheduler/child/webthread_base.h" 158 #include "third_party/WebKit/public/platform/scheduler/child/webthread_base.h"
160 #include "third_party/WebKit/public/platform/scheduler/renderer/renderer_schedul er.h" 159 #include "third_party/WebKit/public/platform/scheduler/renderer/renderer_schedul er.h"
161 #include "third_party/WebKit/public/web/WebDatabase.h" 160 #include "third_party/WebKit/public/web/WebDatabase.h"
162 #include "third_party/WebKit/public/web/WebDocument.h" 161 #include "third_party/WebKit/public/web/WebDocument.h"
163 #include "third_party/WebKit/public/web/WebFrame.h" 162 #include "third_party/WebKit/public/web/WebFrame.h"
164 #include "third_party/WebKit/public/web/WebKit.h" 163 #include "third_party/WebKit/public/web/WebKit.h"
165 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" 164 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h"
166 #include "third_party/WebKit/public/web/WebScriptController.h" 165 #include "third_party/WebKit/public/web/WebScriptController.h"
167 #include "third_party/WebKit/public/web/WebSecurityPolicy.h" 166 #include "third_party/WebKit/public/web/WebSecurityPolicy.h"
168 #include "third_party/WebKit/public/web/WebView.h" 167 #include "third_party/WebKit/public/web/WebView.h"
(...skipping 2280 matching lines...) Expand 10 before | Expand all | Expand 10 after
2449 } 2448 }
2450 } 2449 }
2451 2450
2452 void RenderThreadImpl::OnRendererInterfaceRequest( 2451 void RenderThreadImpl::OnRendererInterfaceRequest(
2453 mojom::RendererAssociatedRequest request) { 2452 mojom::RendererAssociatedRequest request) {
2454 DCHECK(!renderer_binding_.is_bound()); 2453 DCHECK(!renderer_binding_.is_bound());
2455 renderer_binding_.Bind(std::move(request)); 2454 renderer_binding_.Bind(std::move(request));
2456 } 2455 }
2457 2456
2458 } // namespace content 2457 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/scheduler/child/compositor_worker_scheduler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698