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

Unified Diff: chrome_frame/renderer_glue.cc

Issue 6682033: Move plugin messages to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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 | « chrome/renderer/webplugin_delegate_proxy.cc ('k') | content/browser/browser_child_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/renderer_glue.cc
===================================================================
--- chrome_frame/renderer_glue.cc (revision 78042)
+++ chrome_frame/renderer_glue.cc (working copy)
@@ -4,15 +4,25 @@
#include "chrome/common/chrome_version_info.h"
+class GURL;
+
+bool IsPluginProcess() {
+ return false;
+}
+
namespace webkit_glue {
void AppendToLog(const char* filename, int line, const char* message) {
}
-bool IsPluginRunningInRendererProcess() {
- return true;
+bool IsDefaultPluginEnabled() {
+ return false;
}
+bool FindProxyForUrl(const GURL& url, std::string* proxy_list) {
+ return false;
+}
+
// This function is called from BuildUserAgent so we have our own version
// here instead of pulling in the whole renderer lib where this function
// is implemented for Chrome.
@@ -25,4 +35,3 @@
}
} // end namespace webkit_glue
-
« no previous file with comments | « chrome/renderer/webplugin_delegate_proxy.cc ('k') | content/browser/browser_child_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698