summaryrefslogtreecommitdiffstats
path: root/components/autofill
diff options
context:
space:
mode:
authorbrettw <brettw@chromium.org>2016-02-01 14:11:38 -0800
committerCommit bot <commit-bot@chromium.org>2016-02-01 22:12:35 +0000
commitf00b9b402a67812bff2fc2372690ab561e93b416 (patch)
tree900b483366a96c879470e6dd258a544084b43b8a /components/autofill
parent2a1a66fe10ab3d4de81b891497f4d25037e09af1 (diff)
downloadchromium_src-f00b9b402a67812bff2fc2372690ab561e93b416.zip
chromium_src-f00b9b402a67812bff2fc2372690ab561e93b416.tar.gz
chromium_src-f00b9b402a67812bff2fc2372690ab561e93b416.tar.bz2
Update components for new prefs location.
This is a search-and-replace update for includes with "base/prefs" -> "components/prefs" and the headers re-sorted. DEPS files were updated to allow the components in question to depend on components/prefs. This should be a no-op from a build perspective. BUG=583034 Review URL: https://codereview.chromium.org/1651203002 Cr-Commit-Position: refs/heads/master@{#372780}
Diffstat (limited to 'components/autofill')
-rw-r--r--components/autofill/DEPS1
-rw-r--r--components/autofill/core/browser/autocomplete_history_manager.cc2
-rw-r--r--components/autofill/core/browser/autocomplete_history_manager.h2
3 files changed, 3 insertions, 2 deletions
diff --git a/components/autofill/DEPS b/components/autofill/DEPS
index dd9ecc3..bed4f0a 100644
--- a/components/autofill/DEPS
+++ b/components/autofill/DEPS
@@ -1,4 +1,5 @@
include_rules = [
+ "+components/prefs",
"+google_apis/gaia/gaia_urls.h",
"+grit", # For generated headers
"+jni",
diff --git a/components/autofill/core/browser/autocomplete_history_manager.cc b/components/autofill/core/browser/autocomplete_history_manager.cc
index 013bbac..3a6805b 100644
--- a/components/autofill/core/browser/autocomplete_history_manager.cc
+++ b/components/autofill/core/browser/autocomplete_history_manager.cc
@@ -6,7 +6,6 @@
#include <vector>
-#include "base/prefs/pref_service.h"
#include "base/profiler/scoped_tracker.h"
#include "base/strings/string16.h"
#include "base/strings/utf_string_conversions.h"
@@ -18,6 +17,7 @@
#include "components/autofill/core/browser/validation.h"
#include "components/autofill/core/common/autofill_pref_names.h"
#include "components/autofill/core/common/form_data.h"
+#include "components/prefs/pref_service.h"
namespace autofill {
namespace {
diff --git a/components/autofill/core/browser/autocomplete_history_manager.h b/components/autofill/core/browser/autocomplete_history_manager.h
index b76f10a..7acafda 100644
--- a/components/autofill/core/browser/autocomplete_history_manager.h
+++ b/components/autofill/core/browser/autocomplete_history_manager.h
@@ -8,8 +8,8 @@
#include <vector>
#include "base/macros.h"
-#include "base/prefs/pref_member.h"
#include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
+#include "components/prefs/pref_member.h"
#include "components/webdata/common/web_data_service_consumer.h"
namespace autofill {