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

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

Issue 2675303004: Move WebCache from public/web into public/platform (Closed)
Patch Set: . Created 3 years, 10 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 | « components/web_cache/renderer/web_cache_impl.cc ('k') | content/test/blink_test_environment.cc » ('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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" 139 #include "net/base/registry_controlled_domains/registry_controlled_domain.h"
140 #include "net/base/url_util.h" 140 #include "net/base/url_util.h"
141 #include "ppapi/features/features.h" 141 #include "ppapi/features/features.h"
142 #include "services/service_manager/public/cpp/connector.h" 142 #include "services/service_manager/public/cpp/connector.h"
143 #include "services/service_manager/public/cpp/interface_provider.h" 143 #include "services/service_manager/public/cpp/interface_provider.h"
144 #include "services/service_manager/public/cpp/interface_registry.h" 144 #include "services/service_manager/public/cpp/interface_registry.h"
145 #include "services/ui/public/cpp/gpu/context_provider_command_buffer.h" 145 #include "services/ui/public/cpp/gpu/context_provider_command_buffer.h"
146 #include "services/ui/public/interfaces/constants.mojom.h" 146 #include "services/ui/public/interfaces/constants.mojom.h"
147 #include "skia/ext/event_tracer_impl.h" 147 #include "skia/ext/event_tracer_impl.h"
148 #include "skia/ext/skia_memory_dump_provider.h" 148 #include "skia/ext/skia_memory_dump_provider.h"
149 #include "third_party/WebKit/public/platform/WebCache.h"
149 #include "third_party/WebKit/public/platform/WebImageGenerator.h" 150 #include "third_party/WebKit/public/platform/WebImageGenerator.h"
150 #include "third_party/WebKit/public/platform/WebMemoryCoordinator.h" 151 #include "third_party/WebKit/public/platform/WebMemoryCoordinator.h"
151 #include "third_party/WebKit/public/platform/WebString.h" 152 #include "third_party/WebKit/public/platform/WebString.h"
152 #include "third_party/WebKit/public/platform/WebThread.h" 153 #include "third_party/WebKit/public/platform/WebThread.h"
153 #include "third_party/WebKit/public/platform/scheduler/child/compositor_worker_s cheduler.h" 154 #include "third_party/WebKit/public/platform/scheduler/child/compositor_worker_s cheduler.h"
154 #include "third_party/WebKit/public/platform/scheduler/child/webthread_impl_for_ worker_scheduler.h" 155 #include "third_party/WebKit/public/platform/scheduler/child/webthread_impl_for_ worker_scheduler.h"
155 #include "third_party/WebKit/public/platform/scheduler/renderer/renderer_schedul er.h" 156 #include "third_party/WebKit/public/platform/scheduler/renderer/renderer_schedul er.h"
156 #include "third_party/WebKit/public/web/WebCache.h"
157 #include "third_party/WebKit/public/web/WebDatabase.h" 157 #include "third_party/WebKit/public/web/WebDatabase.h"
158 #include "third_party/WebKit/public/web/WebDocument.h" 158 #include "third_party/WebKit/public/web/WebDocument.h"
159 #include "third_party/WebKit/public/web/WebFrame.h" 159 #include "third_party/WebKit/public/web/WebFrame.h"
160 #include "third_party/WebKit/public/web/WebKit.h" 160 #include "third_party/WebKit/public/web/WebKit.h"
161 #include "third_party/WebKit/public/web/WebNetworkStateNotifier.h" 161 #include "third_party/WebKit/public/web/WebNetworkStateNotifier.h"
162 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" 162 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h"
163 #include "third_party/WebKit/public/web/WebScriptController.h" 163 #include "third_party/WebKit/public/web/WebScriptController.h"
164 #include "third_party/WebKit/public/web/WebSecurityPolicy.h" 164 #include "third_party/WebKit/public/web/WebSecurityPolicy.h"
165 #include "third_party/WebKit/public/web/WebView.h" 165 #include "third_party/WebKit/public/web/WebView.h"
166 #include "third_party/skia/include/core/SkGraphics.h" 166 #include "third_party/skia/include/core/SkGraphics.h"
(...skipping 2270 matching lines...) Expand 10 before | Expand all | Expand 10 after
2437 } 2437 }
2438 } 2438 }
2439 2439
2440 void RenderThreadImpl::OnRendererInterfaceRequest( 2440 void RenderThreadImpl::OnRendererInterfaceRequest(
2441 mojom::RendererAssociatedRequest request) { 2441 mojom::RendererAssociatedRequest request) {
2442 DCHECK(!renderer_binding_.is_bound()); 2442 DCHECK(!renderer_binding_.is_bound());
2443 renderer_binding_.Bind(std::move(request)); 2443 renderer_binding_.Bind(std::move(request));
2444 } 2444 }
2445 2445
2446 } // namespace content 2446 } // namespace content
OLDNEW
« no previous file with comments | « components/web_cache/renderer/web_cache_impl.cc ('k') | content/test/blink_test_environment.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698