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 |
- |