Index: chrome/browser/extensions/extension_error_reporter.cc |
diff --git a/chrome/browser/extensions/extension_error_reporter.cc b/chrome/browser/extensions/extension_error_reporter.cc |
index e5abe83451f483fe17a07ab1b936b7c2211555b8..7674ff1189be1a6da8ea90d44f43af1bfa27bd3c 100644 |
--- a/chrome/browser/extensions/extension_error_reporter.cc |
+++ b/chrome/browser/extensions/extension_error_reporter.cc |
@@ -29,16 +29,15 @@ ExtensionErrorReporter* ExtensionErrorReporter::GetInstance() { |
} |
ExtensionErrorReporter::ExtensionErrorReporter(bool enable_noisy_errors) |
- : ui_loop_(MessageLoop::current()), |
- enable_noisy_errors_(enable_noisy_errors) { |
-} |
+ : ui_loop_(base::MessageLoop::current()), |
+ enable_noisy_errors_(enable_noisy_errors) {} |
ExtensionErrorReporter::~ExtensionErrorReporter() {} |
void ExtensionErrorReporter::ReportError(const string16& message, |
bool be_noisy) { |
// NOTE: There won't be a ui_loop_ in the unit test environment. |
- if (ui_loop_ && MessageLoop::current() != ui_loop_) { |
+ if (ui_loop_ && base::MessageLoop::current() != ui_loop_) { |
// base::Unretained is okay since the ExtensionErrorReporter is a singleton |
// that lives until the end of the process. |
ui_loop_->PostTask(FROM_HERE, |