diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-08 19:05:37 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-08 19:05:37 +0000 |
commit | b4b3a91b7f7b30b0aa1628b43b61ee9aebce562f (patch) | |
tree | dc7491ed95382eb245d8704f7e2c3f0c2f8c9997 /chrome/plugin | |
parent | f5dae35ca6f55a4e2d5949b96b519c1287825c76 (diff) | |
download | chromium_src-b4b3a91b7f7b30b0aa1628b43b61ee9aebce562f.zip chromium_src-b4b3a91b7f7b30b0aa1628b43b61ee9aebce562f.tar.gz chromium_src-b4b3a91b7f7b30b0aa1628b43b61ee9aebce562f.tar.bz2 |
FBTF: Move some structs in webkit_glue::ResourceLoaderBridge:: .
This moves inner structs into the namespace toplevel so we can foreward declare
them; then we forward declare them in render_messages.h so we can drop that
header.
BUG=none
TEST=compiles
Review URL: http://codereview.chromium.org/3616014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61996 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/plugin')
-rw-r--r-- | chrome/plugin/chrome_plugin_host.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/plugin/chrome_plugin_host.cc b/chrome/plugin/chrome_plugin_host.cc index b93fbfe..ff9503f 100644 --- a/chrome/plugin/chrome_plugin_host.cc +++ b/chrome/plugin/chrome_plugin_host.cc @@ -33,6 +33,7 @@ namespace { using webkit_glue::ResourceLoaderBridge; +using webkit_glue::ResourceResponseInfo; static MessageLoop* g_plugin_thread_message_loop; @@ -71,7 +72,7 @@ class PluginRequestHandlerProxy virtual bool OnReceivedRedirect( const GURL& new_url, - const ResourceLoaderBridge::ResponseInfo& info, + const ResourceResponseInfo& info, bool* has_new_first_party_for_cookies, GURL* new_first_party_for_cookies) { plugin_->functions().response_funcs->received_redirect( @@ -82,7 +83,7 @@ class PluginRequestHandlerProxy } virtual void OnReceivedResponse( - const ResourceLoaderBridge::ResponseInfo& info, + const ResourceResponseInfo& info, bool content_filtered) { response_headers_ = info.headers; plugin_->functions().response_funcs->start_completed( |