Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(509)

Unified Diff: chrome/browser/webdata/autofill_web_data_service_impl.h

Issue 12987023: Rip autofill code out of webdataservice (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/webdata/autofill_web_data_service_impl.h
diff --git a/chrome/browser/webdata/autofill_web_data_service_impl.h b/chrome/browser/webdata/autofill_web_data_service_impl.h
index 2cbd3a93f4485b3496ca67093d6f0a494e63214c..8e2267cb2c7b6a2bd91ab92e0e4d4acc2557111e 100644
--- a/chrome/browser/webdata/autofill_web_data_service_impl.h
+++ b/chrome/browser/webdata/autofill_web_data_service_impl.h
@@ -1,3 +1,4 @@
+
dhollowa 2013/03/25 21:50:38 Remove empty line.
Cait (Slow) 2013/03/26 14:29:23 Done.
// Copyright (c) 2012 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.
@@ -46,6 +47,10 @@ class AutofillWebDataServiceImpl : public AutofillWebDataService {
virtual void RemoveCreditCard(const std::string& guid) OVERRIDE;
virtual WebDataServiceBase::Handle
GetCreditCards(WebDataServiceConsumer* consumer) OVERRIDE;
+ virtual void RemoveAutofillProfilesAndCreditCardsModifiedBetween(
+ const base::Time& delete_begin, const base::Time& delete_end) OVERRIDE;
+ virtual void RemoveFormElementsAddedBetween(
dhollowa 2013/03/25 21:50:38 ditto: grouping up top.
Cait (Slow) 2013/03/26 14:29:23 Done.
+ const base::Time& delete_begin, const base::Time& delete_end) OVERRIDE;
protected:
virtual ~AutofillWebDataServiceImpl();
@@ -75,6 +80,9 @@ class AutofillWebDataServiceImpl : public AutofillWebDataService {
WebDatabase::State RemoveCreditCardImpl(
const std::string& guid, WebDatabase* db);
scoped_ptr<WDTypedResult> GetCreditCardsImpl(WebDatabase* db);
+ WebDatabase::State RemoveAutofillProfilesAndCreditCardsModifiedBetweenImpl(
+ const base::Time& delete_begin, const base::Time& delete_end,
+ WebDatabase* db);
// Callbacks to ensure that sensitive info is destroyed if request is
// cancelled.

Powered by Google App Engine
This is Rietveld 408576698