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

Unified Diff: components/dom_distiller/content/dom_distiller_service_factory.h

Issue 100623006: Move dom_distiller_service_factory to //chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase after conflict with blundell@chromium.org (!) Created 7 years 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
« no previous file with comments | « components/dom_distiller.gypi ('k') | components/dom_distiller/content/dom_distiller_service_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/dom_distiller/content/dom_distiller_service_factory.h
diff --git a/components/dom_distiller/content/dom_distiller_service_factory.h b/components/dom_distiller/content/dom_distiller_service_factory.h
deleted file mode 100644
index 33d19315dafbb8c446b640f2062a73993fe87f1e..0000000000000000000000000000000000000000
--- a/components/dom_distiller/content/dom_distiller_service_factory.h
+++ /dev/null
@@ -1,53 +0,0 @@
-// Copyright 2013 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.
-
-#ifndef COMPONENTS_DOM_DISTILLER_CONTENT_DOM_DISTILLER_SERVICE_FACTORY_H_
-#define COMPONENTS_DOM_DISTILLER_CONTENT_DOM_DISTILLER_SERVICE_FACTORY_H_
-
-#include "base/memory/singleton.h"
-#include "components/browser_context_keyed_service/browser_context_keyed_service_factory.h"
-#include "components/dom_distiller/core/dom_distiller_service.h"
-
-namespace content {
-class BrowserContext;
-} // namespace content
-
-namespace dom_distiller {
-
-// A simple wrapper for DomDistillerService to expose it as a
-// BrowserContextKeyedService.
-class DomDistillerContextKeyedService : public BrowserContextKeyedService,
- public DomDistillerService {
- public:
- DomDistillerContextKeyedService(
- scoped_ptr<DomDistillerStoreInterface> store,
- scoped_ptr<DistillerFactory> distiller_factory);
- virtual ~DomDistillerContextKeyedService() {}
-
- private:
- DISALLOW_COPY_AND_ASSIGN(DomDistillerContextKeyedService);
-};
-
-class DomDistillerServiceFactory : public BrowserContextKeyedServiceFactory {
- public:
- static DomDistillerServiceFactory* GetInstance();
- static DomDistillerContextKeyedService* GetForBrowserContext(
- content::BrowserContext* context);
-
- private:
- friend struct DefaultSingletonTraits<DomDistillerServiceFactory>;
-
- DomDistillerServiceFactory();
- virtual ~DomDistillerServiceFactory();
-
- virtual BrowserContextKeyedService* BuildServiceInstanceFor(
- content::BrowserContext* context) const OVERRIDE;
-
- virtual content::BrowserContext* GetBrowserContextToUse(
- content::BrowserContext* context) const OVERRIDE;
-};
-
-} // namespace dom_distiller
-
-#endif
« no previous file with comments | « components/dom_distiller.gypi ('k') | components/dom_distiller/content/dom_distiller_service_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698