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

Unified Diff: chrome/browser/ui/global_error_service_factory.cc

Issue 10700027: browser: Move global error to subdir. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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/browser/ui/global_error_service_factory.cc
diff --git a/chrome/browser/ui/global_error_service_factory.cc b/chrome/browser/ui/global_error_service_factory.cc
deleted file mode 100644
index fc7fb576749390b189680a3fa90f330186617d63..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/global_error_service_factory.cc
+++ /dev/null
@@ -1,36 +0,0 @@
-// 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.
-
-#include "chrome/browser/ui/global_error_service_factory.h"
-
-#include "chrome/browser/profiles/profile_dependency_manager.h"
-#include "chrome/browser/ui/global_error_service.h"
-
-// static
-GlobalErrorService* GlobalErrorServiceFactory::GetForProfile(Profile* profile) {
- return static_cast<GlobalErrorService*>(
- GetInstance()->GetServiceForProfile(profile, true));
-}
-
-// static
-GlobalErrorServiceFactory* GlobalErrorServiceFactory::GetInstance() {
- return Singleton<GlobalErrorServiceFactory>::get();
-}
-
-GlobalErrorServiceFactory::GlobalErrorServiceFactory()
- : ProfileKeyedServiceFactory("GlobalErrorService",
- ProfileDependencyManager::GetInstance()) {
-}
-
-GlobalErrorServiceFactory::~GlobalErrorServiceFactory() {
-}
-
-ProfileKeyedService* GlobalErrorServiceFactory::BuildServiceInstanceFor(
- Profile* profile) const {
- return new GlobalErrorService(profile);
-}
-
-bool GlobalErrorServiceFactory::ServiceRedirectedInIncognito() {
- return true;
-}
« no previous file with comments | « chrome/browser/ui/global_error_service_factory.h ('k') | chrome/browser/ui/global_error_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698