| Index: chrome/browser/extensions/extension_updater.cc
|
| diff --git a/chrome/browser/extensions/extension_updater.cc b/chrome/browser/extensions/extension_updater.cc
|
| index 433e9e0952de33f1c2455701667ba8517683578a..ff1b8cef9a45ace42a4e0e2876b1ad15253e15ac 100644
|
| --- a/chrome/browser/extensions/extension_updater.cc
|
| +++ b/chrome/browser/extensions/extension_updater.cc
|
| @@ -108,7 +108,7 @@ void RecordCRXWriteHistogram(bool success, const FilePath& crx_path) {
|
| // can not be read. Try reading.
|
| BrowserThread::PostTask(
|
| BrowserThread::FILE, FROM_HERE,
|
| - base::Bind(CheckThatCRXIsReadable, crx_path));
|
| + base::Bind(&CheckThatCRXIsReadable, crx_path));
|
| }
|
| }
|
|
|
| @@ -128,7 +128,7 @@ void CheckThatCRXIsReadable(const FilePath& crx_path) {
|
|
|
| BrowserThread::PostTask(
|
| BrowserThread::UI, FROM_HERE,
|
| - base::Bind(RecordFileUpdateHistogram, file_write_result));
|
| + base::Bind(&RecordFileUpdateHistogram, file_write_result));
|
| }
|
|
|
| void RecordFileUpdateHistogram(FileWriteResult file_write_result) {
|
|
|