summaryrefslogtreecommitdiffstats
path: root/components/data_reduction_proxy
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-15 17:37:26 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-15 17:37:26 +0000
commitf0c8c4993d1828df35581db849c2d4563fc12479 (patch)
treec40d0e7358871a596f21c9f89c480ef0834ea5fd /components/data_reduction_proxy
parente6fc1e2494a088bc9115104da81d9fbdbec2fc56 (diff)
downloadchromium_src-f0c8c4993d1828df35581db849c2d4563fc12479.zip
chromium_src-f0c8c4993d1828df35581db849c2d4563fc12479.tar.gz
chromium_src-f0c8c4993d1828df35581db849c2d4563fc12479.tar.bz2
components: Extract pref_registry component out of user_prefs.
The reason for doing this is that user_prefs depends on content_browser, which brings a lot of extra dependencies that takes a lot of time to build (yeah, I'm looking at you Blink and V8) and bookmarks is one of the targets that should not depend on content. BUG=359565 TEST=green trybots R=blundell@chromium.org, sky@chromium.org, yoz@chromium.org Review URL: https://codereview.chromium.org/271793003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@270722 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/data_reduction_proxy')
-rw-r--r--components/data_reduction_proxy/DEPS2
-rw-r--r--components/data_reduction_proxy/browser/data_reduction_proxy_prefs.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/components/data_reduction_proxy/DEPS b/components/data_reduction_proxy/DEPS
index bfc9d61..a1c481f 100644
--- a/components/data_reduction_proxy/DEPS
+++ b/components/data_reduction_proxy/DEPS
@@ -1,5 +1,5 @@
include_rules = [
- "+components/user_prefs",
+ "+components/pref_registry",
"+crypto",
"+net",
]
diff --git a/components/data_reduction_proxy/browser/data_reduction_proxy_prefs.cc b/components/data_reduction_proxy/browser/data_reduction_proxy_prefs.cc
index ee90c2e..8e59a3f 100644
--- a/components/data_reduction_proxy/browser/data_reduction_proxy_prefs.cc
+++ b/components/data_reduction_proxy/browser/data_reduction_proxy_prefs.cc
@@ -6,7 +6,7 @@
#include "base/prefs/pref_registry_simple.h"
#include "components/data_reduction_proxy/common/data_reduction_proxy_pref_names.h"
-#include "components/user_prefs/pref_registry_syncable.h"
+#include "components/pref_registry/pref_registry_syncable.h"
namespace data_reduction_proxy {