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

Unified Diff: components/browser_context_keyed_service/browser_context_keyed_base_factory.h

Issue 15904021: Enable component build for browser_context_keyed_service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: some more trybot debugging Created 7 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: components/browser_context_keyed_service/browser_context_keyed_base_factory.h
diff --git a/components/browser_context_keyed_service/browser_context_keyed_base_factory.h b/components/browser_context_keyed_service/browser_context_keyed_base_factory.h
index 25dc8cdf3bc21f19a59bad0b0ee4ecce921ae937..861cd0a3c0c75d71966b810dfe16618f2426e0b5 100644
--- a/components/browser_context_keyed_service/browser_context_keyed_base_factory.h
+++ b/components/browser_context_keyed_service/browser_context_keyed_base_factory.h
@@ -8,6 +8,7 @@
#include <set>
#include "base/threading/non_thread_safe.h"
+#include "components/browser_context_keyed_service/browser_context_keyed_service_export.h"
#include "components/browser_context_keyed_service/dependency_node.h"
class BrowserContextDependencyManager;
@@ -29,8 +30,10 @@ class PrefRegistrySyncable;
// RefcountedBrowserContextKeyedServiceFactory. This object describes general
// dependency management between Factories; subclasses react to lifecycle
// events and implement memory management.
-class BrowserContextKeyedBaseFactory : public base::NonThreadSafe,
- public DependencyNode {
+class BROWSER_CONTEXT_KEYED_SERVICE_EXPORT
+BrowserContextKeyedBaseFactory
+ : public base::NonThreadSafe,
+ NON_EXPORTED_BASE(public DependencyNode) {
public:
// Registers preferences used in this service on the pref service of
// |context|. This is the public interface and is safe to be called multiple

Powered by Google App Engine
This is Rietveld 408576698