Chromium Code Reviews| Index: chrome/browser/webdata/autofill_web_data_service_impl.h |
| diff --git a/chrome/browser/webdata/autofill_web_data_service_impl.h b/chrome/browser/webdata/autofill_web_data_service_impl.h |
| index dc80cb06cf0411d21aa6063a0027d05a4672ff66..a4d2dcaa0e97bfea5c20829522d0fd44d897683f 100644 |
| --- a/chrome/browser/webdata/autofill_web_data_service_impl.h |
| +++ b/chrome/browser/webdata/autofill_web_data_service_impl.h |
| @@ -15,7 +15,6 @@ class WebDataService; |
| class AutofillWebDataServiceImpl : public AutofillWebDataService { |
| public: |
| explicit AutofillWebDataServiceImpl(scoped_refptr<WebDataService> service); |
| - virtual ~AutofillWebDataServiceImpl(); |
| // AutofillWebData implementation. |
| virtual void AddFormFields( |
| @@ -39,9 +38,16 @@ class AutofillWebDataServiceImpl : public AutofillWebDataService { |
| virtual WebDataServiceBase::Handle |
| GetCreditCards(WebDataServiceConsumer* consumer) OVERRIDE; |
| - // WebDataServiceBase implementation. |
| + // WebDataServiceBase overrides (temporary until we decouple |
|
Jói
2013/03/18 20:02:17
Perhaps make this a TODO so it's easier for us to
Cait (Slow)
2013/03/18 22:06:27
Done.
|
| + // WebDatabaseService life cycle from WebData). |
| virtual void CancelRequest(Handle h) OVERRIDE; |
| virtual content::NotificationSource GetNotificationSource() OVERRIDE; |
| + virtual bool IsDatabaseLoaded() OVERRIDE; |
| + virtual WebDatabase* GetDatabase() OVERRIDE; |
| + |
| + |
| + protected: |
| + virtual ~AutofillWebDataServiceImpl(); |
| private: |
| DISALLOW_COPY_AND_ASSIGN(AutofillWebDataServiceImpl); |