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

Unified Diff: chrome/browser/api/webdata/autofill_web_data_service.h

Issue 12937016: Rename AutofillWebDataServiceImpl --> AutofillWebDataService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix DEPS 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
« no previous file with comments | « no previous file | chrome/browser/browsing_data/browsing_data_remover.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/api/webdata/autofill_web_data_service.h
diff --git a/chrome/browser/api/webdata/autofill_web_data_service.h b/chrome/browser/api/webdata/autofill_web_data_service.h
deleted file mode 100644
index 0b04cde57d3c2a8824b7f80b62e65aeda4b6e529..0000000000000000000000000000000000000000
--- a/chrome/browser/api/webdata/autofill_web_data_service.h
+++ /dev/null
@@ -1,49 +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 CHROME_BROWSER_API_WEBDATA_AUTOFILL_WEB_DATA_SERVICE_H_
-#define CHROME_BROWSER_API_WEBDATA_AUTOFILL_WEB_DATA_SERVICE_H_
-
-#include <vector>
-
-#include "chrome/browser/api/webdata/autofill_web_data.h"
-
-class AutofillChange;
-class WebDatabaseService;
-
-namespace content {
-class BrowserContext;
-}
-
-typedef std::vector<AutofillChange> AutofillChangeList;
-
-// API for Autofill web data.
-class AutofillWebDataService
- : public AutofillWebData,
- public WebDataServiceBase {
- public:
- AutofillWebDataService();
-
- AutofillWebDataService(scoped_refptr<WebDatabaseService> wdbs,
- const ProfileErrorCallback& callback);
-
- // Retrieve an AutofillWebDataService for the given context.
- //
- // Can return NULL in some contexts.
- static scoped_refptr<AutofillWebDataService> FromBrowserContext(
- content::BrowserContext* context);
-
- // Notifies listeners on the UI thread that multiple changes have been made to
- // to Autofill records of the database.
- // NOTE: This method is intended to be called from the DB thread. It
- // it asynchronously notifies listeners on the UI thread.
- // |web_data_service| may be NULL for testing purposes.
- static void NotifyOfMultipleAutofillChanges(
- AutofillWebDataService* web_data_service);
-
- protected:
- virtual ~AutofillWebDataService() {}
-};
-
-#endif // CHROME_BROWSER_API_WEBDATA_AUTOFILL_WEB_DATA_SERVICE_H_
« no previous file with comments | « no previous file | chrome/browser/browsing_data/browsing_data_remover.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698