diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-23 02:00:39 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-23 02:00:39 +0000 |
commit | 5c61cc960bac8471d3f002e434ac1796b43c129f (patch) | |
tree | c482a7e14961eed1179eafd20b94a880b638b260 /chrome/browser/extensions/extension_error_reporter.cc | |
parent | f2ad6f5420484a071b317f5ad68a7f8e409a525f (diff) | |
download | chromium_src-5c61cc960bac8471d3f002e434ac1796b43c129f.zip chromium_src-5c61cc960bac8471d3f002e434ac1796b43c129f.tar.gz chromium_src-5c61cc960bac8471d3f002e434ac1796b43c129f.tar.bz2 |
browser: Rename two message box functions to more accurate names.
This is a follow up to r132847.
R=msw@chromium.org
TBR=sky@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10164019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133396 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_error_reporter.cc')
-rw-r--r-- | chrome/browser/extensions/extension_error_reporter.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/chrome/browser/extensions/extension_error_reporter.cc b/chrome/browser/extensions/extension_error_reporter.cc index 1c2b8d1..41428eb 100644 --- a/chrome/browser/extensions/extension_error_reporter.cc +++ b/chrome/browser/extensions/extension_error_reporter.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -56,9 +56,8 @@ void ExtensionErrorReporter::ReportError(const string16& message, LOG(ERROR) << "Extension error: " << message; if (enable_noisy_errors_ && be_noisy) { - browser::ShowErrorBox(NULL, - UTF8ToUTF16("Extension error"), - message); + browser::ShowWarningMessageBox(NULL, ASCIIToUTF16("Extension error"), + message); } } |