Index: chrome/browser/icon_loader_linux.cc |
diff --git a/chrome/browser/icon_loader_linux.cc b/chrome/browser/icon_loader_linux.cc |
index a6cb5194293f47477ff0e38d85f3955e05bd8e10..32529c4889dcc41ea206e36d08539d3facc7ddaa 100644 |
--- a/chrome/browser/icon_loader_linux.cc |
+++ b/chrome/browser/icon_loader_linux.cc |
@@ -6,6 +6,7 @@ |
#include <string> |
+#include "base/bind.h" |
#include "base/file_util.h" |
#include "base/logging.h" |
#include "base/message_loop.h" |
@@ -49,5 +50,5 @@ void IconLoader::ReadIcon() { |
} |
target_message_loop_->PostTask( |
- FROM_HERE, NewRunnableMethod(this, &IconLoader::NotifyDelegate)); |
+ FROM_HERE, base::Bind(&IconLoader::NotifyDelegate, this)); |
} |