OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef COMPONENTS_DOM_DISTILLER_CONTENT_DOM_DISTILLER_SERVICE_FACTORY_H_ | 5 #ifndef CHROME_BROWSER_DOM_DISTILLER_DOM_DISTILLER_SERVICE_FACTORY_H_ |
6 #define COMPONENTS_DOM_DISTILLER_CONTENT_DOM_DISTILLER_SERVICE_FACTORY_H_ | 6 #define CHROME_BROWSER_DOM_DISTILLER_DOM_DISTILLER_SERVICE_FACTORY_H_ |
7 | 7 |
8 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
9 #include "components/browser_context_keyed_service/browser_context_keyed_service
_factory.h" | 9 #include "components/browser_context_keyed_service/browser_context_keyed_service
_factory.h" |
10 #include "components/dom_distiller/core/dom_distiller_service.h" | 10 #include "components/dom_distiller/core/dom_distiller_service.h" |
11 | 11 |
12 namespace content { | 12 namespace content { |
13 class BrowserContext; | 13 class BrowserContext; |
14 } // namespace content | 14 } // namespace content |
15 | 15 |
16 namespace dom_distiller { | 16 namespace dom_distiller { |
(...skipping 26 matching lines...) Expand all Loading... |
43 | 43 |
44 virtual BrowserContextKeyedService* BuildServiceInstanceFor( | 44 virtual BrowserContextKeyedService* BuildServiceInstanceFor( |
45 content::BrowserContext* context) const OVERRIDE; | 45 content::BrowserContext* context) const OVERRIDE; |
46 | 46 |
47 virtual content::BrowserContext* GetBrowserContextToUse( | 47 virtual content::BrowserContext* GetBrowserContextToUse( |
48 content::BrowserContext* context) const OVERRIDE; | 48 content::BrowserContext* context) const OVERRIDE; |
49 }; | 49 }; |
50 | 50 |
51 } // namespace dom_distiller | 51 } // namespace dom_distiller |
52 | 52 |
53 #endif | 53 #endif // CHROME_BROWSER_DOM_DISTILLER_DOM_DISTILLER_SERVICE_FACTORY_H_ |
OLD | NEW |