| Index: chrome/browser/browser_process_impl.cc | 
| diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc | 
| index 0d4be7ffa69f492cdc8eea6be4e73b369b773059..982761a1dfab1c14ed2db39c5f54863321a9a2a0 100644 | 
| --- a/chrome/browser/browser_process_impl.cc | 
| +++ b/chrome/browser/browser_process_impl.cc | 
| @@ -20,6 +20,7 @@ | 
| #include "chrome/browser/browser_main.h" | 
| #include "chrome/browser/browser_process_sub_thread.h" | 
| #include "chrome/browser/browser_trial.h" | 
| +#include "chrome/browser/chrome_plugin_service_filter.h" | 
| #include "chrome/browser/debugger/devtools_protocol_handler.h" | 
| #include "chrome/browser/debugger/remote_debugging_server.h" | 
| #include "chrome/browser/download/download_file_manager.h" | 
| @@ -715,7 +716,8 @@ void BrowserProcessImpl::CreateIOThread() { | 
| // it is predominantly used from the io thread, but must be created | 
| // on the main thread. The service ctor is inexpensive and does not | 
| // invoke the io_thread() accessor. | 
| -  PluginService::GetInstance(); | 
| +  PluginService::GetInstance()->set_filter( | 
| +      ChromePluginServiceFilter::GetInstance()); | 
|  | 
| // Add the Chrome specific plugins. | 
| chrome::RegisterInternalDefaultPlugin(); | 
|  |