Index: chrome/browser/net/sqlite_persistent_cookie_store.cc |
diff --git a/chrome/browser/net/sqlite_persistent_cookie_store.cc b/chrome/browser/net/sqlite_persistent_cookie_store.cc |
index 003c302928d30b5142650cdfaa3420310291f0df..1a9fd5a22448bce565f1317c44f941b8fcb03423 100644 |
--- a/chrome/browser/net/sqlite_persistent_cookie_store.cc |
+++ b/chrome/browser/net/sqlite_persistent_cookie_store.cc |
@@ -440,8 +440,6 @@ void SQLitePersistentCookieStore::DeleteCookie( |
backend_->DeleteCookie(cc); |
} |
-// static |
-void SQLitePersistentCookieStore::ClearLocalState( |
- const FilePath& path) { |
- file_util::Delete(path, false); |
+void SQLitePersistentCookieStore::ClearLocalState() { |
+ file_util::Delete(path_, false); |
Mattias Nissler (ping if slow)
2010/12/01 17:23:24
What's the contract on the question which thread t
Randy Smith (Not in Mondays)
2010/12/01 20:39:50
This file's somewhat messy WRT thread access. The
jochen (gone - plz use gerrit)
2010/12/02 08:45:50
I think this should be done on the DB thread. Also
|
} |