| Index: chrome/browser/plugins/plugin_finder.cc
|
| diff --git a/chrome/browser/plugins/plugin_finder.cc b/chrome/browser/plugins/plugin_finder.cc
|
| index ec82e1c62b741b86abf70652dca7c38a92948b48..8d2d05089fcf9ecdf9f1bacb9b903b4575d38823 100644
|
| --- a/chrome/browser/plugins/plugin_finder.cc
|
| +++ b/chrome/browser/plugins/plugin_finder.cc
|
| @@ -12,7 +12,7 @@
|
| #include "base/utf_string_conversions.h"
|
| #include "base/values.h"
|
| #include "chrome/browser/browser_process.h"
|
| -#include "chrome/browser/plugins/plugin_installer.h"
|
| +#include "chrome/browser/plugins/plugin_metadata.h"
|
| #include "chrome/browser/prefs/pref_service.h"
|
| #include "chrome/common/pref_names.h"
|
| #include "content/public/browser/browser_thread.h"
|
| @@ -56,14 +56,6 @@ static string16 GetGroupName(const webkit::WebPluginInfo& plugin) {
|
|
|
| } // namespace
|
|
|
| -// TODO(ibraaaa): DELETE. http://crbug.com/124396
|
| -// static
|
| -void PluginFinder::Get(const base::Callback<void(PluginFinder*)>& cb) {
|
| - // At a later point we might want to do intialization here that needs to be
|
| - // done asynchronously, like loading the plug-in list from disk or from a URL.
|
| - MessageLoop::current()->PostTask(FROM_HERE, base::Bind(cb, GetInstance()));
|
| -}
|
| -
|
| // static
|
| PluginFinder* PluginFinder::GetInstance() {
|
| // PluginFinder::GetInstance() is the only method that's allowed to call
|
|
|