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

Unified Diff: components/autofill/browser/webdata/autofill_webdata.h

Issue 17392006: In components/autofill, move browser/ to core/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to fix conflicts Created 7 years, 6 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: components/autofill/browser/webdata/autofill_webdata.h
diff --git a/components/autofill/browser/webdata/autofill_webdata.h b/components/autofill/browser/webdata/autofill_webdata.h
deleted file mode 100644
index 6630e8ac6f89d17cd1d20a574087a562fd860ba1..0000000000000000000000000000000000000000
--- a/components/autofill/browser/webdata/autofill_webdata.h
+++ /dev/null
@@ -1,107 +0,0 @@
-// 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.
-
-#ifndef COMPONENTS_AUTOFILL_BROWSER_WEBDATA_AUTOFILL_WEBDATA_H_
-#define COMPONENTS_AUTOFILL_BROWSER_WEBDATA_AUTOFILL_WEBDATA_H_
-
-#include <string>
-#include <vector>
-
-#include "base/memory/scoped_ptr.h"
-#include "base/strings/string16.h"
-#include "components/webdata/common/web_data_service_base.h"
-
-namespace base {
-
-class Time;
-
-} // namespace base
-
-class Profile;
-class WebDataServiceConsumer;
-
-namespace autofill {
-
-class AutofillProfile;
-class CreditCard;
-struct FormFieldData;
-
-// Pure virtual interface for retrieving Autofill data. API users
-// should use AutofillWebDataService.
-class AutofillWebData {
- public:
- virtual ~AutofillWebData() {}
-
- // Schedules a task to add form fields to the web database.
- virtual void AddFormFields(
- const std::vector<FormFieldData>& fields) = 0;
-
- // Initiates the request for a vector of values which have been entered in
- // form input fields named |name|. The method OnWebDataServiceRequestDone of
- // |consumer| gets called back when the request is finished, with the vector
- // included in the argument |result|.
- virtual WebDataServiceBase::Handle GetFormValuesForElementName(
- const base::string16& name,
- const base::string16& prefix,
- int limit,
- WebDataServiceConsumer* consumer) = 0;
-
- // Checks if there are any form elements in the database.
- virtual WebDataServiceBase::Handle HasFormElements(
- WebDataServiceConsumer* consumer) = 0;
-
- // Removes form elements recorded for Autocomplete from the database.
- virtual void RemoveFormElementsAddedBetween(
- const base::Time& delete_begin, const base::Time& delete_end) = 0;
-
- virtual void RemoveFormValueForElementName(const base::string16& name,
- const base::string16& value) = 0;
-
- // Schedules a task to add an Autofill profile to the web database.
- virtual void AddAutofillProfile(const AutofillProfile& profile) = 0;
-
- // Schedules a task to update an Autofill profile in the web database.
- virtual void UpdateAutofillProfile(const AutofillProfile& profile) = 0;
-
- // Schedules a task to remove an Autofill profile from the web database.
- // |guid| is the identifer of the profile to remove.
- virtual void RemoveAutofillProfile(const std::string& guid) = 0;
-
- // Initiates the request for all Autofill profiles. The method
- // OnWebDataServiceRequestDone of |consumer| gets called when the request is
- // finished, with the profiles included in the argument |result|. The
- // consumer owns the profiles.
- virtual WebDataServiceBase::Handle GetAutofillProfiles(
- WebDataServiceConsumer* consumer) = 0;
-
- // Schedules a task to add credit card to the web database.
- virtual void AddCreditCard(const CreditCard& credit_card) = 0;
-
- // Schedules a task to update credit card in the web database.
- virtual void UpdateCreditCard(const CreditCard& credit_card) = 0;
-
- // Schedules a task to remove a credit card from the web database.
- // |guid| is identifer of the credit card to remove.
- virtual void RemoveCreditCard(const std::string& guid) = 0;
-
- // Initiates the request for all credit cards. The method
- // OnWebDataServiceRequestDone of |consumer| gets called when the request is
- // finished, with the credit cards included in the argument |result|. The
- // consumer owns the credit cards.
- virtual WebDataServiceBase::Handle GetCreditCards(
- WebDataServiceConsumer* consumer) = 0;
-
- // Removes Autofill records from the database.
- virtual void RemoveAutofillDataModifiedBetween(
- const base::Time& delete_begin, const base::Time& delete_end) = 0;
-
- // Removes origin URLs associated with Autofill profiles and credit cards from
- // the database.
- virtual void RemoveOriginURLsModifiedBetween(
- const base::Time& delete_begin, const base::Time& delete_end) = 0;
-};
-
-} // namespace autofill
-
-#endif // COMPONENTS_AUTOFILL_BROWSER_WEBDATA_AUTOFILL_WEBDATA_H_

Powered by Google App Engine
This is Rietveld 408576698