| Index: chrome/renderer/renderer_glue.cc
|
| ===================================================================
|
| --- chrome/renderer/renderer_glue.cc (revision 23449)
|
| +++ chrome/renderer/renderer_glue.cc (working copy)
|
| @@ -202,11 +202,10 @@
|
| return "chrome";
|
| }
|
|
|
| -bool GetPlugins(bool refresh, std::vector<WebPluginInfo>* plugins) {
|
| +void GetPlugins(bool refresh, std::vector<WebPluginInfo>* plugins) {
|
| if (!RenderThread::current()->plugin_refresh_allowed())
|
| refresh = false;
|
| - return RenderThread::current()->Send(new ViewHostMsg_GetPlugins(
|
| - refresh, plugins));
|
| + RenderThread::current()->Send(new ViewHostMsg_GetPlugins(refresh, plugins));
|
| }
|
|
|
| // static factory function
|
|
|