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

Unified Diff: components/webdata/common/web_database_service.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/webdata/common/web_database_service.h
diff --git a/components/webdata/common/web_database_service.h b/components/webdata/common/web_database_service.h
index 3c766573d061b127351065c18b14a1461a304c8e..dee7683688165c74f79700c437b88dfca74d4f00 100644
--- a/components/webdata/common/web_database_service.h
+++ b/components/webdata/common/web_database_service.h
@@ -23,7 +23,7 @@
#include "components/webdata/common/web_database.h"
#include "components/webdata/common/webdata_export.h"
-class WebDataServiceBackend;
+class WebDatabaseBackend;
class WebDataRequestManager;
namespace content {
@@ -77,8 +77,8 @@ class WEBDATA_EXPORT WebDatabaseService
// TODO(caitkp): remove this method once SyncServices no longer depend on it.
virtual WebDatabase* GetDatabaseOnDB() const;
- // Returns a pointer to the WebDataServiceBackend.
- scoped_refptr<WebDataServiceBackend> GetBackend() const;
+ // Returns a pointer to the WebDatabaseBackend.
+ scoped_refptr<WebDatabaseBackend> GetBackend() const;
// Schedule an update/write task on the DB thread.
virtual void ScheduleDBTask(
@@ -129,7 +129,7 @@ class WEBDATA_EXPORT WebDatabaseService
// The primary owner is |WebDatabaseService| but is refcounted because
// PostTask on DB thread may outlive us.
- scoped_refptr<WebDataServiceBackend> wds_backend_;
+ scoped_refptr<WebDatabaseBackend> wds_backend_;
Cait (Slow) 2015/03/11 14:49:27 naming nit: can you rename this member to web_db_b
zhuoyu.qian 2015/03/12 01:50:09 Done.
// Callbacks to be called once the DB has loaded.
LoadedCallbacks loaded_callbacks_;

Powered by Google App Engine
This is Rietveld 408576698