Move plugin messages to content.
TBR=tsepez
Review URL: http://codereview.chromium.org/6682033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78099 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome_frame/renderer_glue.cc b/chrome_frame/renderer_glue.cc
index bc2c201..8ecbe14 100644
--- a/chrome_frame/renderer_glue.cc
+++ b/chrome_frame/renderer_glue.cc
@@ -4,13 +4,23 @@
#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
@@ -25,4 +35,3 @@
}
} // end namespace webkit_glue
-