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

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

Issue 9726022: Revert 127573 - DOMStorageContextImpl that's implemented in terms of the new dom_storage classes. A… (Closed) Base URL: svn://svn.chromium.org/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 127574)
+++ content/browser/in_process_webkit/dom_storage_context_impl.h (working copy)
@@ -105,10 +105,14 @@
// The local storage file extension.
static const FilePath::CharType kLocalStorageExtension[];
- void SetClearLocalState(bool clear_local_state);
+ void set_clear_local_state_on_exit(bool clear_local_state) {
+ clear_local_state_on_exit_ = clear_local_state;
+ }
// Disables the exit-time deletion for all data (also session-only data).
- void SaveSessionState();
+ void SaveSessionState() {
+ save_session_state_ = true;
+ }
void set_data_path_for_testing(const FilePath& data_path) {
data_path_ = data_path;

Powered by Google App Engine
This is Rietveld 408576698