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

Side by Side Diff: content/content_child.gypi

Issue 63843002: Add ChildMessageFilter, a base class for renderer/worker cross-thread MessageFilter (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: RemoveFilter fix Created 7 years, 1 month 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
« no previous file with comments | « content/child/worker_thread_task_runner.cc ('k') | content/renderer/render_thread_impl.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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../components/tracing.gyp:tracing', 8 '../components/tracing.gyp:tracing',
9 '../skia/skia.gyp:skia', 9 '../skia/skia.gyp:skia',
10 '../ui/gfx/gfx.gyp:gfx', 10 '../ui/gfx/gfx.gyp:gfx',
(...skipping 14 matching lines...) Expand all
25 'child/appcache/appcache_dispatcher.cc', 25 'child/appcache/appcache_dispatcher.cc',
26 'child/appcache/appcache_dispatcher.h', 26 'child/appcache/appcache_dispatcher.h',
27 'child/appcache/appcache_frontend_impl.cc', 27 'child/appcache/appcache_frontend_impl.cc',
28 'child/appcache/appcache_frontend_impl.h', 28 'child/appcache/appcache_frontend_impl.h',
29 'child/appcache/web_application_cache_host_impl.cc', 29 'child/appcache/web_application_cache_host_impl.cc',
30 'child/appcache/web_application_cache_host_impl.h', 30 'child/appcache/web_application_cache_host_impl.h',
31 'child/browser_font_resource_trusted.cc', 31 'child/browser_font_resource_trusted.cc',
32 'child/browser_font_resource_trusted.h', 32 'child/browser_font_resource_trusted.h',
33 'child/child_histogram_message_filter.cc', 33 'child/child_histogram_message_filter.cc',
34 'child/child_histogram_message_filter.h', 34 'child/child_histogram_message_filter.h',
35 'child/child_message_filter.cc',
36 'child/child_message_filter.h',
35 'child/child_process.cc', 37 'child/child_process.cc',
36 'child/child_process.h', 38 'child/child_process.h',
37 'child/child_resource_message_filter.cc', 39 'child/child_resource_message_filter.cc',
38 'child/child_resource_message_filter.h', 40 'child/child_resource_message_filter.h',
39 'child/child_thread.cc', 41 'child/child_thread.cc',
40 'child/child_thread.h', 42 'child/child_thread.h',
41 'child/database_util.cc', 43 'child/database_util.cc',
42 'child/database_util.h', 44 'child/database_util.h',
43 'child/db_message_filter.cc', 45 'child/db_message_filter.cc',
44 'child/db_message_filter.h', 46 'child/db_message_filter.h',
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 'child/webblobregistry_impl.cc', 147 'child/webblobregistry_impl.cc',
146 'child/webblobregistry_impl.h', 148 'child/webblobregistry_impl.h',
147 'child/webkitplatformsupport_impl.cc', 149 'child/webkitplatformsupport_impl.cc',
148 'child/webkitplatformsupport_impl.h', 150 'child/webkitplatformsupport_impl.h',
149 'child/webmessageportchannel_impl.cc', 151 'child/webmessageportchannel_impl.cc',
150 'child/webmessageportchannel_impl.h', 152 'child/webmessageportchannel_impl.h',
151 'child/websocket_bridge.cc', 153 'child/websocket_bridge.cc',
152 'child/websocket_bridge.h', 154 'child/websocket_bridge.h',
153 'child/websocket_dispatcher.cc', 155 'child/websocket_dispatcher.cc',
154 'child/websocket_dispatcher.h', 156 'child/websocket_dispatcher.h',
157 'child/worker_thread_task_runner.cc',
158 'child/worker_thread_task_runner.h',
155 'public/child/image_decoder_utils.h', 159 'public/child/image_decoder_utils.h',
156 'public/child/resource_dispatcher_delegate.h', 160 'public/child/resource_dispatcher_delegate.h',
157 ], 161 ],
158 'conditions': [ 162 'conditions': [
159 ['OS=="android"', { 163 ['OS=="android"', {
160 'includes': [ 164 'includes': [
161 '../build/android/cpufeatures.gypi', 165 '../build/android/cpufeatures.gypi',
162 ], 166 ],
163 }], 167 }],
164 ['enable_plugins==0', { 168 ['enable_plugins==0', {
(...skipping 24 matching lines...) Expand all
189 'child/npapi/webplugin_delegate_impl_mac.mm', 193 'child/npapi/webplugin_delegate_impl_mac.mm',
190 ], 194 ],
191 }], 195 }],
192 ['use_aura==1 and OS=="win"', { 196 ['use_aura==1 and OS=="win"', {
193 'sources!': [ 197 'sources!': [
194 'child/npapi/webplugin_delegate_impl_aura.cc', 198 'child/npapi/webplugin_delegate_impl_aura.cc',
195 ], 199 ],
196 }], 200 }],
197 ], 201 ],
198 } 202 }
OLDNEW
« no previous file with comments | « content/child/worker_thread_task_runner.cc ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698