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

Unified Diff: webkit/glue/plugins/plugin_instance.cc

Issue 7871: This fixes http://code.google.com/p/chromium/issues/detail?id=3585, which is ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 2 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/plugins/plugin_instance.h ('k') | webkit/glue/plugins/webplugin_delegate_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/plugin_instance.cc
===================================================================
--- webkit/glue/plugins/plugin_instance.cc (revision 3852)
+++ webkit/glue/plugins/plugin_instance.cc (working copy)
@@ -74,17 +74,6 @@
return stream;
}
-void PluginInstance::SendStream(const std::string &url,
- bool notify_needed,
- void *notify_data) {
- if (notify_needed) {
- host_->host_functions()->geturlnotify(npp(), url.c_str(), NULL,
- notify_data);
- } else {
- host_->host_functions()->geturl(npp(), url.c_str(), NULL);
- }
-}
-
void PluginInstance::AddStream(PluginStream* stream) {
open_streams_.push_back(stream);
}
« no previous file with comments | « webkit/glue/plugins/plugin_instance.h ('k') | webkit/glue/plugins/webplugin_delegate_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698