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

Side by Side Diff: content/content_browser.gypi

Issue 8666013: Add a public content/ interface for intents. Use it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Change method signature. Created 9 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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 '../crypto/crypto.gyp:crypto', 7 '../crypto/crypto.gyp:crypto',
8 '../net/net.gyp:net', 8 '../net/net.gyp:net',
9 '../net/net.gyp:http_server', 9 '../net/net.gyp:http_server',
10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', 10 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
(...skipping 13 matching lines...) Expand all
24 'include_dirs': [ 24 'include_dirs': [
25 '..', 25 '..',
26 '<(INTERMEDIATE_DIR)', 26 '<(INTERMEDIATE_DIR)',
27 ], 27 ],
28 'sources': [ 28 'sources': [
29 'public/browser/browser_main_parts.h', 29 'public/browser/browser_main_parts.h',
30 'public/browser/browser_thread.h', 30 'public/browser/browser_thread.h',
31 'public/browser/content_browser_client.h', 31 'public/browser/content_browser_client.h',
32 'public/browser/content_ipc_logging.h', 32 'public/browser/content_ipc_logging.h',
33 'public/browser/download_manager_delegate.h', 33 'public/browser/download_manager_delegate.h',
34 'public/browser/intents_host.h',
34 'public/browser/native_web_keyboard_event.h', 35 'public/browser/native_web_keyboard_event.h',
35 'public/browser/navigation_types.h', 36 'public/browser/navigation_types.h',
36 'public/browser/notification_details.h', 37 'public/browser/notification_details.h',
37 'public/browser/notification_observer.h', 38 'public/browser/notification_observer.h',
38 'public/browser/notification_registrar.cc', 39 'public/browser/notification_registrar.cc',
39 'public/browser/notification_registrar.h', 40 'public/browser/notification_registrar.h',
40 'public/browser/notification_service.h', 41 'public/browser/notification_service.h',
41 'public/browser/notification_source.h', 42 'public/browser/notification_source.h',
42 'public/browser/notification_types.h', 43 'public/browser/notification_types.h',
43 'public/browser/plugin_data_remover.h', 44 'public/browser/plugin_data_remover.h',
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 'browser/in_process_webkit/indexed_db_transaction_callbacks.cc', 277 'browser/in_process_webkit/indexed_db_transaction_callbacks.cc',
277 'browser/in_process_webkit/indexed_db_transaction_callbacks.h', 278 'browser/in_process_webkit/indexed_db_transaction_callbacks.h',
278 'browser/in_process_webkit/session_storage_namespace.cc', 279 'browser/in_process_webkit/session_storage_namespace.cc',
279 'browser/in_process_webkit/session_storage_namespace.h', 280 'browser/in_process_webkit/session_storage_namespace.h',
280 'browser/in_process_webkit/webkit_context.cc', 281 'browser/in_process_webkit/webkit_context.cc',
281 'browser/in_process_webkit/webkit_context.h', 282 'browser/in_process_webkit/webkit_context.h',
282 'browser/in_process_webkit/webkit_thread.cc', 283 'browser/in_process_webkit/webkit_thread.cc',
283 'browser/in_process_webkit/webkit_thread.h', 284 'browser/in_process_webkit/webkit_thread.h',
284 'browser/intents/intent_injector.cc', 285 'browser/intents/intent_injector.cc',
285 'browser/intents/intent_injector.h', 286 'browser/intents/intent_injector.h',
287 'browser/intents/intents_host_impl.cc',
288 'browser/intents/intents_host_impl.h',
286 'browser/javascript_dialogs.h', 289 'browser/javascript_dialogs.h',
287 'browser/load_from_memory_cache_details.cc', 290 'browser/load_from_memory_cache_details.cc',
288 'browser/load_from_memory_cache_details.h', 291 'browser/load_from_memory_cache_details.h',
289 'browser/load_notification_details.h', 292 'browser/load_notification_details.h',
290 'browser/mach_broker_mac.cc', 293 'browser/mach_broker_mac.cc',
291 'browser/mach_broker_mac.h', 294 'browser/mach_broker_mac.h',
292 'browser/mime_registry_message_filter.cc', 295 'browser/mime_registry_message_filter.cc',
293 'browser/mime_registry_message_filter.h', 296 'browser/mime_registry_message_filter.h',
294 'browser/net/browser_online_state_observer.cc', 297 'browser/net/browser_online_state_observer.cc',
295 'browser/net/browser_online_state_observer.h', 298 'browser/net/browser_online_state_observer.h',
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
786 'browser/renderer_host/java/java_bridge_dispatcher_host_manager.h', 789 'browser/renderer_host/java/java_bridge_dispatcher_host_manager.h',
787 'browser/renderer_host/java/java_bridge_dispatcher_host.cc', 790 'browser/renderer_host/java/java_bridge_dispatcher_host.cc',
788 'browser/renderer_host/java/java_bridge_dispatcher_host.h', 791 'browser/renderer_host/java/java_bridge_dispatcher_host.h',
789 'browser/renderer_host/java/java_method.cc', 792 'browser/renderer_host/java/java_method.cc',
790 'browser/renderer_host/java/java_method.h', 793 'browser/renderer_host/java/java_method.h',
791 ], 794 ],
792 }], 795 }],
793 ], 796 ],
794 } 797 }
795 798
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698