diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-14 22:16:10 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-14 22:16:10 +0000 |
commit | 105303e5d9bf528bb4163312b2fd318f218dd33b (patch) | |
tree | b3d63276044578d8902df4b5a11bba688deafd20 /chrome_frame | |
parent | 74c2d8475aa9e4b4aa5a574ce9fb80d0a411df4a (diff) | |
download | chromium_src-105303e5d9bf528bb4163312b2fd318f218dd33b.zip chromium_src-105303e5d9bf528bb4163312b2fd318f218dd33b.tar.gz chromium_src-105303e5d9bf528bb4163312b2fd318f218dd33b.tar.bz2 |
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
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/renderer_glue.cc | 15 |
1 files changed, 12 insertions, 3 deletions
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 @@ std::string GetProductVersion() { } } // end namespace webkit_glue - |