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

Unified Diff: components/autofill/browser/webdata/autofill_webdata_backend.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_backend.h
diff --git a/components/autofill/browser/webdata/autofill_webdata_backend.h b/components/autofill/browser/webdata/autofill_webdata_backend.h
deleted file mode 100644
index 383fc7a9ff0f6484001d71cc3368aab25f51ebbf..0000000000000000000000000000000000000000
--- a/components/autofill/browser/webdata/autofill_webdata_backend.h
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright 2013 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_BACKEND_H_
-#define COMPONENTS_AUTOFILL_BROWSER_WEBDATA_AUTOFILL_WEBDATA_BACKEND_H_
-
-class WebDatabase;
-
-namespace autofill {
-
-class AutofillWebDataServiceObserverOnDBThread;
-
-// Interface for doing Autofill work directly on the DB thread (used by
-// Sync, mostly), without fully exposing the AutofillWebDataBackend to clients.
-class AutofillWebDataBackend {
- public:
- virtual ~AutofillWebDataBackend() {}
-
- // Get a raw pointer to the WebDatabase.
- virtual WebDatabase* GetDatabase() = 0;
-
- // Add an observer to be notified of changes on the DB thread.
- virtual void AddObserver(
- AutofillWebDataServiceObserverOnDBThread* observer) = 0;
-
- // Remove an observer.
- virtual void RemoveObserver(
- AutofillWebDataServiceObserverOnDBThread* observer) = 0;
-
- // Remove expired elements from the database and commit if needed.
- virtual void RemoveExpiredFormElements() = 0;
-
- // 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
- // asynchronously notifies listeners on the UI thread.
- virtual void NotifyOfMultipleAutofillChanges() = 0;
-};
-
-} // namespace autofill
-
-#endif // COMPONENTS_AUTOFILL_BROWSER_WEBDATA_AUTOFILL_WEBDATA_BACKEND_H_

Powered by Google App Engine
This is Rietveld 408576698