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

Unified Diff: components/autofill/core/browser/webdata/autofill_webdata_backend_impl.h

Issue 962903003: Rename WebDataServiceBackend to WebDatabaseBackend (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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/core/browser/webdata/autofill_webdata_backend_impl.h
diff --git a/components/autofill/core/browser/webdata/autofill_webdata_backend_impl.h b/components/autofill/core/browser/webdata/autofill_webdata_backend_impl.h
index 6fc052b3f668964b4c09c445cd33fed700f325f4..f4d5a521baabad89887db744c99c341e34956377 100644
--- a/components/autofill/core/browser/webdata/autofill_webdata_backend_impl.h
+++ b/components/autofill/core/browser/webdata/autofill_webdata_backend_impl.h
@@ -22,7 +22,7 @@ namespace base {
class MessageLoopProxy;
}
-class WebDataServiceBackend;
+class WebDatabaseBackend;
namespace autofill {
@@ -47,7 +47,7 @@ class AutofillWebDataBackendImpl
// thread of changes initiated by Sync (this callback may be called multiple
// times).
AutofillWebDataBackendImpl(
- scoped_refptr<WebDataServiceBackend> web_database_backend,
+ scoped_refptr<WebDatabaseBackend> web_database_backend,
scoped_refptr<base::MessageLoopProxy> ui_thread,
scoped_refptr<base::MessageLoopProxy> db_thread,
const base::Closure& on_changed_callback);
@@ -201,9 +201,9 @@ class AutofillWebDataBackendImpl
ObserverList<AutofillWebDataServiceObserverOnDBThread> db_observer_list_;
- // WebDataServiceBackend allows direct access to DB.
+ // WebDatabaseBackend allows direct access to DB.
// TODO(caitkp): Make it so nobody but us needs direct DB access anymore.
- scoped_refptr<WebDataServiceBackend> web_database_backend_;
+ scoped_refptr<WebDatabaseBackend> web_database_backend_;
base::Closure on_changed_callback_;

Powered by Google App Engine
This is Rietveld 408576698