summaryrefslogtreecommitdiffstats
path: root/components/user_prefs
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-11 13:00:16 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-11 13:00:16 +0000
commitc7141feb8f1f57d16e1b48efe6d630909e7355d5 (patch)
tree097e2e4c8c5cb3f90adfc91c02db0ec014f9bbbb /components/user_prefs
parent681d053f56e8811feebe868953722617e0ea1377 (diff)
downloadchromium_src-c7141feb8f1f57d16e1b48efe6d630909e7355d5.zip
chromium_src-c7141feb8f1f57d16e1b48efe6d630909e7355d5.tar.gz
chromium_src-c7141feb8f1f57d16e1b48efe6d630909e7355d5.tar.bz2
components: Move user_prefs into user_prefs namespace.
BUG=245050 R=joth@chromium.org,thestig@chromium.org,joi@chromium.org Review URL: https://chromiumcodereview.appspot.com/16625004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205517 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/user_prefs')
-rw-r--r--components/user_prefs/user_prefs.cc4
-rw-r--r--components/user_prefs/user_prefs.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/components/user_prefs/user_prefs.cc b/components/user_prefs/user_prefs.cc
index 73b8ece..8ecdfe4 100644
--- a/components/user_prefs/user_prefs.cc
+++ b/components/user_prefs/user_prefs.cc
@@ -9,7 +9,7 @@
#include "base/prefs/pref_service.h"
#include "content/public/browser/browser_context.h"
-namespace components {
+namespace user_prefs {
namespace {
@@ -44,4 +44,4 @@ UserPrefs::UserPrefs(PrefService* prefs) : prefs_(prefs) {
UserPrefs::~UserPrefs() {
}
-} // namespace components
+} // namespace user_prefs
diff --git a/components/user_prefs/user_prefs.h b/components/user_prefs/user_prefs.h
index 3eec9ff..90bf900 100644
--- a/components/user_prefs/user_prefs.h
+++ b/components/user_prefs/user_prefs.h
@@ -15,7 +15,7 @@ namespace content {
class BrowserContext;
}
-namespace components {
+namespace user_prefs {
// Components may use preferences associated with a given user. These
// hang off of content::BrowserContext and can be retrieved using
@@ -43,6 +43,6 @@ class USER_PREFS_EXPORT UserPrefs : public base::SupportsUserData::Data {
DISALLOW_COPY_AND_ASSIGN(UserPrefs);
};
-} // namespace components
+} // namespace user_prefs
#endif // COMPONENTS_USER_PREFS_USER_PREFS_H_