Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1249)

Unified Diff: content/browser/in_process_webkit/dom_storage_context_impl.h

Issue 9695013: DOMStorageContextImpl that's implemented in terms of the new dom_storage classes. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/in_process_webkit/dom_storage_context_impl.h
===================================================================
--- content/browser/in_process_webkit/dom_storage_context_impl.h (revision 127292)
+++ content/browser/in_process_webkit/dom_storage_context_impl.h (working copy)
@@ -105,14 +105,10 @@
// The local storage file extension.
static const FilePath::CharType kLocalStorageExtension[];
- void set_clear_local_state_on_exit(bool clear_local_state) {
- clear_local_state_on_exit_ = clear_local_state;
- }
+ void SetClearLocalState(bool clear_local_state);
// Disables the exit-time deletion for all data (also session-only data).
- void SaveSessionState() {
- save_session_state_ = true;
- }
+ void SaveSessionState();
void set_data_path_for_testing(const FilePath& data_path) {
data_path_ = data_path;

Powered by Google App Engine
This is Rietveld 408576698