diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-25 15:04:22 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-25 15:04:22 +0000 |
commit | 9d8ea308b93fdd1b78cded9e604268e9752e2909 (patch) | |
tree | 5a4e49524786f0fb259726e0f92bb1fd64ed01ac /content/content_common.gypi | |
parent | 20cd74f9317b37e8faee699dfdf7dcf2a7eea12c (diff) | |
download | chromium_src-9d8ea308b93fdd1b78cded9e604268e9752e2909.zip chromium_src-9d8ea308b93fdd1b78cded9e604268e9752e2909.tar.gz chromium_src-9d8ea308b93fdd1b78cded9e604268e9752e2909.tar.bz2 |
Cleanup the IPC param traits structure:
-traits that are only used by chrome should be in chrome
-traits that aren't used by chrome shouldn't be in content/public
-use macros for serialization where possible
-traits that are only used by one message file should just be listed in it
-get rid of webkit_param_traits since it's not needed anymore. It was added as a hack to keep npchrome_frame.dll's size small by giving a hint to the MSVS linker, but now that there's more split between the message files because of the content split it's not necessary anymore. I've verified that npchrome_frame.dll's size (Release, non-component) size doesn't change.
Review URL: https://codereview.chromium.org/10980010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@158570 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_common.gypi')
-rw-r--r-- | content/content_common.gypi | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/content/content_common.gypi b/content/content_common.gypi index 38b5d1e..c246a2e 100644 --- a/content/content_common.gypi +++ b/content/content_common.gypi @@ -120,6 +120,8 @@ 'common/appcache/appcache_dispatcher.h', 'common/appcache_messages.h', 'common/browser_plugin_messages.h', + 'common/cc_messages.cc', + 'common/cc_messages.h', 'common/child_histogram_message_filter.cc', 'common/child_histogram_message_filter.h', 'common/child_process.cc', @@ -142,6 +144,9 @@ 'common/content_export.h', 'common/content_message_generator.cc', 'common/content_message_generator.h', + 'common/content_param_traits.cc', + 'common/content_param_traits.h', + 'common/content_param_traits_macros.h', 'common/content_paths.cc', 'common/css_colors.h', 'common/database_messages.h', @@ -320,6 +325,7 @@ 'common/request_extra_data.h', 'common/resource_dispatcher.cc', 'common/resource_dispatcher.h', + 'common/resource_messages.cc', 'common/resource_messages.h', 'common/sandbox_init_mac.cc', 'common/sandbox_init_mac.h', @@ -371,8 +377,6 @@ 'public/common/content_client.h', 'public/common/window_container_type.cc', 'public/common/window_container_type.h', - 'public/common/webkit_param_traits.cc', - 'public/common/webkit_param_traits.h', ], 'conditions': [ ['OS=="ios"', { |