diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-19 21:29:08 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-19 21:29:08 +0000 |
commit | cff6677d1dbc8c6f2c7291402ae2796836246cc5 (patch) | |
tree | 4245a804c348f0dd22537d8aedda160314efb087 /chrome/renderer | |
parent | 57b9d1b1590c6e34c54c59817b5c3dcce81a1243 (diff) | |
download | chromium_src-cff6677d1dbc8c6f2c7291402ae2796836246cc5.zip chromium_src-cff6677d1dbc8c6f2c7291402ae2796836246cc5.tar.gz chromium_src-cff6677d1dbc8c6f2c7291402ae2796836246cc5.tar.bz2 |
Mac: First steps for default plugin
BUG=17392
TEST=Go to http://www.adobe.com/shockwave/welcome/. The task manager should show that the default plugin is running, and the "Missing Plug-in" text should look slightly different than it did before. (this test depends on a small webkit patch)
Requires commenting out
if (objectContentType(url, mimeType) != ObjectContentNetscapePlugin)
return 0;
in WebKit/WebKit/chromium/src/FrameLoaderClientImpl.cpp's createPlugin() as well, else the default plugin won't load.
Review URL: http://codereview.chromium.org/2075006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47726 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer')
-rw-r--r-- | chrome/renderer/render_view.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/renderer/render_view.cc b/chrome/renderer/render_view.cc index 82c4775..52d50c3 100644 --- a/chrome/renderer/render_view.cc +++ b/chrome/renderer/render_view.cc @@ -1533,7 +1533,9 @@ void RenderView::OnMissingPluginStatus( } } #else - // TODO(port): plugins current not supported + // TODO(port): Implement the infobar that accompanies the default plugin. + // Linux: http://crbug.com/10952 + // Mac: http://crbug.com/17392 NOTIMPLEMENTED(); #endif } |