Chromium Code Reviews| 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_; |