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

Unified Diff: components/user_prefs/user_prefs.h

Issue 1258653002: components: Make user_prefs a source_set. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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
« no previous file with comments | « components/user_prefs/BUILD.gn ('k') | components/user_prefs/user_prefs_export.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/user_prefs/user_prefs.h
diff --git a/components/user_prefs/user_prefs.h b/components/user_prefs/user_prefs.h
index ceea4f02f322501db29bdb39033849be22bb7857..7398d72ce77e153bfbe38c7f12968c00b20020d5 100644
--- a/components/user_prefs/user_prefs.h
+++ b/components/user_prefs/user_prefs.h
@@ -5,9 +5,8 @@
#ifndef COMPONENTS_USER_PREFS_USER_PREFS_H_
#define COMPONENTS_USER_PREFS_USER_PREFS_H_
-#include "base/basictypes.h"
+#include "base/macros.h"
#include "base/supports_user_data.h"
-#include "components/user_prefs/user_prefs_export.h"
class PrefService;
@@ -18,7 +17,7 @@ namespace user_prefs {
//
// It is up to the embedder to create and own the PrefService and attach it to
// base::SupportsUserData using the UserPrefs::Set() function.
-class USER_PREFS_EXPORT UserPrefs : public base::SupportsUserData::Data {
+class UserPrefs : public base::SupportsUserData::Data {
public:
// Retrieves the PrefService for a given context, or null if none is attached.
static PrefService* Get(base::SupportsUserData* context);
« no previous file with comments | « components/user_prefs/BUILD.gn ('k') | components/user_prefs/user_prefs_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698