diff options
author | andybons@chromium.org <andybons@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-30 15:52:34 +0000 |
---|---|---|
committer | andybons@chromium.org <andybons@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-30 15:52:34 +0000 |
commit | 23e152e917c70e0399770433d564fe2f54c5ea95 (patch) | |
tree | 8bc4584d15b8bafe7b019448e79e81f1d74be9e5 /chrome_frame | |
parent | 8549a7c039c6db1f1ab9dcf529a97c9262faf227 (diff) | |
download | chromium_src-23e152e917c70e0399770433d564fe2f54c5ea95.zip chromium_src-23e152e917c70e0399770433d564fe2f54c5ea95.tar.gz chromium_src-23e152e917c70e0399770433d564fe2f54c5ea95.tar.bz2 |
Split out Keywords and Autofill logic from WebDatabase.
This is simply moving things around.
No underlying logic has changed.
Since the new class AutofillTable actually encapsulates more
than one table within the schema, I'm open to naming suggestions.
No plans yet for the migration code.
BUG=none
TEST=WebDatabaseTest*,AutofillTableTest*,KeywordTableTest*,ProfileSyncServiceAutofillTest.*
Review URL: http://codereview.chromium.org/6708110
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79834 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/test/delete_chrome_history_test.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome_frame/test/delete_chrome_history_test.cc b/chrome_frame/test/delete_chrome_history_test.cc index 035e2ab..98ad6e4 100644 --- a/chrome_frame/test/delete_chrome_history_test.cc +++ b/chrome_frame/test/delete_chrome_history_test.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -106,7 +106,8 @@ ACTION_P2(ExpectFormValuesForElementNameMatch, element_name, matcher) { if (init_status == sql::INIT_OK) { std::vector<string16> values; - web_database.GetFormValuesForElementName(element_name, L"", &values, 9999); + web_database.GetAutofillTable()->GetFormValuesForElementName( + element_name, L"", &values, 9999); EXPECT_THAT(values, matcher); } } |