| Index: chrome/browser/in_process_webkit/dom_storage_context.h
|
| ===================================================================
|
| --- chrome/browser/in_process_webkit/dom_storage_context.h (revision 36552)
|
| +++ chrome/browser/in_process_webkit/dom_storage_context.h (working copy)
|
| @@ -71,6 +71,18 @@
|
| // date that's supplied.
|
| void DeleteDataModifiedSince(const base::Time& cutoff);
|
|
|
| + // Deletes a single local storage file.
|
| + void DeleteLocalStorageFile(const FilePath& file_path);
|
| +
|
| + // Deletes all local storage files.
|
| + void DeleteAllLocalStorageFiles();
|
| +
|
| + // The local storage directory.
|
| + static const FilePath::CharType kLocalStorageDirectory[];
|
| +
|
| + // The local storage file extension.
|
| + static const FilePath::CharType kLocalStorageExtension[];
|
| +
|
| private:
|
| // The WebKit thread half of CloneSessionStorage above. Static because
|
| // DOMStorageContext isn't ref counted thus we can't use a runnable method.
|
|
|