| Index: chrome/browser/icon_loader.cc
|
| diff --git a/chrome/browser/icon_loader.cc b/chrome/browser/icon_loader.cc
|
| index 39919477640e6295c44c322b3f62171eea2c0556..d6dd947a1b784b9d9958b56829a5eed42ee9aec8 100644
|
| --- a/chrome/browser/icon_loader.cc
|
| +++ b/chrome/browser/icon_loader.cc
|
| @@ -8,10 +8,6 @@
|
| #include "base/bind.h"
|
| #include "content/public/browser/browser_thread.h"
|
|
|
| -#if defined(TOOLKIT_GTK)
|
| -#include "base/nix/mime_util_xdg.h"
|
| -#endif
|
| -
|
| using content::BrowserThread;
|
|
|
| IconLoader::IconLoader(const IconGroupID& group, IconSize size,
|
| @@ -29,11 +25,6 @@ IconLoader::~IconLoader() {
|
| void IconLoader::Start() {
|
| target_message_loop_ = base::MessageLoopProxy::current();
|
|
|
| -#if defined(TOOLKIT_GTK)
|
| - // This call must happen on the UI thread before we can start loading icons.
|
| - base::nix::DetectGtkTheme();
|
| -#endif
|
| -
|
| BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
|
| base::Bind(&IconLoader::ReadIcon, this));
|
| }
|
|
|