Chromium Code Reviews| Index: chrome/browser/net/sqlite_persistent_cookie_store.h |
| diff --git a/chrome/browser/net/sqlite_persistent_cookie_store.h b/chrome/browser/net/sqlite_persistent_cookie_store.h |
| index 08ee08e10749ef63d95f1c54554c653843594295..f3212fb8b0f502448eaf9d58941a916ed798a776 100644 |
| --- a/chrome/browser/net/sqlite_persistent_cookie_store.h |
| +++ b/chrome/browser/net/sqlite_persistent_cookie_store.h |
| @@ -27,7 +27,6 @@ class SQLitePersistentCookieStore |
| public: |
| SQLitePersistentCookieStore(const FilePath& path, |
| bool restore_old_session_cookies); |
| - virtual ~SQLitePersistentCookieStore(); |
| virtual void Load(const LoadedCallback& loaded_callback) OVERRIDE; |
| @@ -50,6 +49,8 @@ class SQLitePersistentCookieStore |
| private: |
| class Backend; |
| + virtual ~SQLitePersistentCookieStore(); |
|
eroman
2012/04/13 18:47:25
Is it intentional that these lack implementations?
Ryan Sleevi
2012/04/13 18:52:35
The implementation is in the .cc file. All that ch
eroman
2012/04/13 19:26:38
oops, misread that!
|
| + |
| scoped_refptr<Backend> backend_; |
| DISALLOW_COPY_AND_ASSIGN(SQLitePersistentCookieStore); |