diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-21 15:05:21 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-21 15:05:21 +0000 |
commit | 397908018088686f21a81bbb822c519bdc2eae7a (patch) | |
tree | 6bcbe9ae0d6038f782b4d628c3f1a4f098584463 /chrome/plugin | |
parent | 77c327ddb532777dde7e3a6f5dc078d4a76dcfab (diff) | |
download | chromium_src-397908018088686f21a81bbb822c519bdc2eae7a.zip chromium_src-397908018088686f21a81bbb822c519bdc2eae7a.tar.gz chromium_src-397908018088686f21a81bbb822c519bdc2eae7a.tar.bz2 |
More removal of WebCore usage from webplugin_impl.cc
Adds a few helper methods on WebFrame.
R=jam
BUG=10036
TEST=none
Review URL: http://codereview.chromium.org/173152
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23956 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/plugin')
-rw-r--r-- | chrome/plugin/webplugin_delegate_stub.cc | 2 | ||||
-rw-r--r-- | chrome/plugin/webplugin_delegate_stub.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/plugin/webplugin_delegate_stub.cc b/chrome/plugin/webplugin_delegate_stub.cc index c42815a..a8a652f 100644 --- a/chrome/plugin/webplugin_delegate_stub.cc +++ b/chrome/plugin/webplugin_delegate_stub.cc @@ -309,7 +309,7 @@ void WebPluginDelegateStub::OnSendJavaScriptStream(const std::string& url, } void WebPluginDelegateStub::OnDidReceiveManualResponse( - const std::string& url, + const GURL& url, const PluginMsg_DidReceiveResponseParams& params) { delegate_->DidReceiveManualResponse(url, params.mime_type, params.headers, params.expected_length, diff --git a/chrome/plugin/webplugin_delegate_stub.h b/chrome/plugin/webplugin_delegate_stub.h index 519a648..e385156 100644 --- a/chrome/plugin/webplugin_delegate_stub.h +++ b/chrome/plugin/webplugin_delegate_stub.h @@ -79,7 +79,7 @@ class WebPluginDelegateStub : public IPC::Channel::Listener, intptr_t notify_data); void OnDidReceiveManualResponse( - const std::string& url, + const GURL& url, const PluginMsg_DidReceiveResponseParams& params); void OnDidReceiveManualData(const std::vector<char>& buffer); void OnDidFinishManualLoading(); |