Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(40)

Unified Diff: chrome/common/extensions/extension_error_reporter.cc

Issue 1705009: Changing linux platform for chromeos. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/extension_error_reporter.cc
===================================================================
--- chrome/common/extensions/extension_error_reporter.cc (revision 45985)
+++ chrome/common/extensions/extension_error_reporter.cc (working copy)
@@ -1,71 +0,0 @@
-// Copyright (c) 2006-2009 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.
-
-#include "chrome/common/extensions/extension_error_reporter.h"
-
-#include "build/build_config.h"
-
-#include "base/logging.h"
-#include "base/message_loop.h"
-#include "base/utf_string_conversions.h"
-#include "chrome/common/platform_util.h"
-
-// No AddRef required when using ExtensionErrorReporter with RunnableMethod.
-// This is okay since the ExtensionErrorReporter is a singleton that lives until
-// the end of the process.
-template <> struct RunnableMethodTraits<ExtensionErrorReporter> {
- void RetainCallee(ExtensionErrorReporter*) {}
- void ReleaseCallee(ExtensionErrorReporter*) {}
-};
-
-ExtensionErrorReporter* ExtensionErrorReporter::instance_ = NULL;
-
-// static
-void ExtensionErrorReporter::Init(bool enable_noisy_errors) {
- if (!instance_) {
- instance_ = new ExtensionErrorReporter(enable_noisy_errors);
- }
-}
-
-// static
-ExtensionErrorReporter* ExtensionErrorReporter::GetInstance() {
- CHECK(instance_) << "Init() was never called";
- return instance_;
-}
-
-ExtensionErrorReporter::ExtensionErrorReporter(bool enable_noisy_errors)
- : ui_loop_(MessageLoop::current()),
- enable_noisy_errors_(enable_noisy_errors) {
-}
-
-void ExtensionErrorReporter::ReportError(const std::string& message,
- bool be_noisy) {
- // NOTE: There won't be a ui_loop_ in the unit test environment.
- if (ui_loop_ && MessageLoop::current() != ui_loop_) {
- ui_loop_->PostTask(FROM_HERE,
- NewRunnableMethod(this, &ExtensionErrorReporter::ReportError, message,
- be_noisy));
- return;
- }
-
- errors_.push_back(message);
-
- // TODO(aa): Print the error message out somewhere better. I think we are
- // going to need some sort of 'extension inspector'.
- LOG(ERROR) << "Extension error: " << message;
-
- if (enable_noisy_errors_ && be_noisy) {
- platform_util::SimpleErrorBox(NULL,
- UTF8ToUTF16("Extension error"),
- UTF8ToUTF16(message));
- }
-}
-
-const std::vector<std::string>* ExtensionErrorReporter::GetErrors() {
- return &errors_;
-}
-
-void ExtensionErrorReporter::ClearErrors() {
- errors_.clear();
-}

Powered by Google App Engine
This is Rietveld 408576698