summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autofill_manager.cc
diff options
context:
space:
mode:
authorwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-27 23:52:34 +0000
committerwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-27 23:52:34 +0000
commitb782578e971100daacb017679bb470bd1941da0c (patch)
tree174b60cf83c04262bf21d8aa28560cc05c806891 /chrome/browser/autofill_manager.cc
parentf081bbf106d0e49697a4b2dd354d356488072e9e (diff)
downloadchromium_src-b782578e971100daacb017679bb470bd1941da0c.zip
chromium_src-b782578e971100daacb017679bb470bd1941da0c.tar.gz
chromium_src-b782578e971100daacb017679bb470bd1941da0c.tar.bz2
Drop whitespace at end of line
Fix formatting for initializer list Use ASSERT_GE when appropriate Don't #include a header twice etc Review URL: http://codereview.chromium.org/28137 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10650 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill_manager.cc')
-rw-r--r--chrome/browser/autofill_manager.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/autofill_manager.cc b/chrome/browser/autofill_manager.cc
index 6b44dd6..8025cbb 100644
--- a/chrome/browser/autofill_manager.cc
+++ b/chrome/browser/autofill_manager.cc
@@ -16,11 +16,11 @@ void AutofillManager::RegisterUserPrefs(PrefService* prefs) {
prefs->RegisterBooleanPref(prefs::kFormAutofillEnabled, true);
}
-AutofillManager::AutofillManager(WebContents* web_contents) :
- web_contents_(web_contents),
- pending_query_handle_(0),
- node_id_(0),
- request_id_(0) {
+AutofillManager::AutofillManager(WebContents* web_contents)
+ : web_contents_(web_contents),
+ pending_query_handle_(0),
+ node_id_(0),
+ request_id_(0) {
form_autofill_enabled_.Init(prefs::kFormAutofillEnabled,
profile()->GetPrefs(), NULL);
}