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

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

Issue 22410007: Move appcache_frontend_impl.* to content/renderer/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
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 <vector> 10 #include <vector>
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 #include "content/common/resource_messages.h" 47 #include "content/common/resource_messages.h"
48 #include "content/common/view_messages.h" 48 #include "content/common/view_messages.h"
49 #include "content/public/common/content_constants.h" 49 #include "content/public/common/content_constants.h"
50 #include "content/public/common/content_paths.h" 50 #include "content/public/common/content_paths.h"
51 #include "content/public/common/content_switches.h" 51 #include "content/public/common/content_switches.h"
52 #include "content/public/common/renderer_preferences.h" 52 #include "content/public/common/renderer_preferences.h"
53 #include "content/public/common/url_constants.h" 53 #include "content/public/common/url_constants.h"
54 #include "content/public/renderer/content_renderer_client.h" 54 #include "content/public/renderer/content_renderer_client.h"
55 #include "content/public/renderer/render_process_observer.h" 55 #include "content/public/renderer/render_process_observer.h"
56 #include "content/public/renderer/render_view_visitor.h" 56 #include "content/public/renderer/render_view_visitor.h"
57 #include "content/renderer/appcache_frontend_impl.h"
57 #include "content/renderer/devtools/devtools_agent_filter.h" 58 #include "content/renderer/devtools/devtools_agent_filter.h"
58 #include "content/renderer/dom_storage/dom_storage_dispatcher.h" 59 #include "content/renderer/dom_storage/dom_storage_dispatcher.h"
59 #include "content/renderer/dom_storage/webstoragearea_impl.h" 60 #include "content/renderer/dom_storage/webstoragearea_impl.h"
60 #include "content/renderer/dom_storage/webstoragenamespace_impl.h" 61 #include "content/renderer/dom_storage/webstoragenamespace_impl.h"
61 #include "content/renderer/gamepad_shared_memory_reader.h" 62 #include "content/renderer/gamepad_shared_memory_reader.h"
62 #include "content/renderer/gpu/compositor_output_surface.h" 63 #include "content/renderer/gpu/compositor_output_surface.h"
63 #include "content/renderer/gpu/gpu_benchmarking_extension.h" 64 #include "content/renderer/gpu/gpu_benchmarking_extension.h"
64 #include "content/renderer/gpu/input_event_filter.h" 65 #include "content/renderer/gpu/input_event_filter.h"
65 #include "content/renderer/gpu/input_handler_manager.h" 66 #include "content/renderer/gpu/input_handler_manager.h"
66 #include "content/renderer/media/audio_input_message_filter.h" 67 #include "content/renderer/media/audio_input_message_filter.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" 103 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h"
103 #include "third_party/WebKit/public/web/WebScriptController.h" 104 #include "third_party/WebKit/public/web/WebScriptController.h"
104 #include "third_party/WebKit/public/web/WebSecurityPolicy.h" 105 #include "third_party/WebKit/public/web/WebSecurityPolicy.h"
105 #include "third_party/WebKit/public/web/WebSharedWorkerRepository.h" 106 #include "third_party/WebKit/public/web/WebSharedWorkerRepository.h"
106 #include "third_party/WebKit/public/web/WebView.h" 107 #include "third_party/WebKit/public/web/WebView.h"
107 #include "ui/base/layout.h" 108 #include "ui/base/layout.h"
108 #include "ui/base/ui_base_switches.h" 109 #include "ui/base/ui_base_switches.h"
109 #include "v8/include/v8.h" 110 #include "v8/include/v8.h"
110 #include "webkit/child/worker_task_runner.h" 111 #include "webkit/child/worker_task_runner.h"
111 #include "webkit/glue/webkit_glue.h" 112 #include "webkit/glue/webkit_glue.h"
112 #include "webkit/renderer/appcache/appcache_frontend_impl.h"
113 #include "webkit/renderer/compositor_bindings/web_external_bitmap_impl.h" 113 #include "webkit/renderer/compositor_bindings/web_external_bitmap_impl.h"
114 114
115 #if defined(OS_WIN) 115 #if defined(OS_WIN)
116 #include <windows.h> 116 #include <windows.h>
117 #include <objbase.h> 117 #include <objbase.h>
118 #include "base/win/scoped_com_initializer.h" 118 #include "base/win/scoped_com_initializer.h"
119 #else 119 #else
120 // TODO(port) 120 // TODO(port)
121 #include "base/memory/scoped_handle.h" 121 #include "base/memory/scoped_handle.h"
122 #include "content/child/npapi/np_channel_base.h" 122 #include "content/child/npapi/np_channel_base.h"
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 suspend_webkit_shared_timer_ = true; 341 suspend_webkit_shared_timer_ = true;
342 notify_webkit_of_modal_loop_ = true; 342 notify_webkit_of_modal_loop_ = true;
343 widget_count_ = 0; 343 widget_count_ = 0;
344 hidden_widget_count_ = 0; 344 hidden_widget_count_ = 0;
345 idle_notification_delay_in_ms_ = kInitialIdleHandlerDelayMs; 345 idle_notification_delay_in_ms_ = kInitialIdleHandlerDelayMs;
346 idle_notifications_to_skip_ = 0; 346 idle_notifications_to_skip_ = 0;
347 layout_test_mode_ = false; 347 layout_test_mode_ = false;
348 shutdown_event_ = NULL; 348 shutdown_event_ = NULL;
349 349
350 appcache_dispatcher_.reset( 350 appcache_dispatcher_.reset(
351 new AppCacheDispatcher(Get(), new appcache::AppCacheFrontendImpl())); 351 new AppCacheDispatcher(Get(), new AppCacheFrontendImpl()));
352 dom_storage_dispatcher_.reset(new DomStorageDispatcher()); 352 dom_storage_dispatcher_.reset(new DomStorageDispatcher());
353 main_thread_indexed_db_dispatcher_.reset(new IndexedDBDispatcher( 353 main_thread_indexed_db_dispatcher_.reset(new IndexedDBDispatcher(
354 thread_safe_sender())); 354 thread_safe_sender()));
355 355
356 media_stream_center_ = NULL; 356 media_stream_center_ = NULL;
357 357
358 db_message_filter_ = new DBMessageFilter(); 358 db_message_filter_ = new DBMessageFilter();
359 AddFilter(db_message_filter_.get()); 359 AddFilter(db_message_filter_.get());
360 360
361 #if defined(ENABLE_WEBRTC) 361 #if defined(ENABLE_WEBRTC)
(...skipping 942 matching lines...) Expand 10 before | Expand all | Expand 10 after
1304 1304
1305 } 1305 }
1306 1306
1307 void RenderThreadImpl::SampleGamepads(WebKit::WebGamepads* data) { 1307 void RenderThreadImpl::SampleGamepads(WebKit::WebGamepads* data) {
1308 if (!gamepad_shared_memory_reader_) 1308 if (!gamepad_shared_memory_reader_)
1309 gamepad_shared_memory_reader_.reset(new GamepadSharedMemoryReader); 1309 gamepad_shared_memory_reader_.reset(new GamepadSharedMemoryReader);
1310 gamepad_shared_memory_reader_->SampleGamepads(*data); 1310 gamepad_shared_memory_reader_->SampleGamepads(*data);
1311 } 1311 }
1312 1312
1313 } // namespace content 1313 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698