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

Unified Diff: webkit/dom_storage/dom_storage_task_runner.h

Issue 10444065: Switch all domstorage tasks to be shutdown blocking to allow changes to be flushed to disk on shutd… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 7 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
« no previous file with comments | « no previous file | webkit/dom_storage/dom_storage_task_runner.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/dom_storage/dom_storage_task_runner.h
===================================================================
--- webkit/dom_storage/dom_storage_task_runner.h (revision 139329)
+++ webkit/dom_storage/dom_storage_task_runner.h (working copy)
@@ -21,8 +21,9 @@
// primary access from queuing up behind commits to disk.
// * Initialization, shutdown, and administrative tasks are performed as
// shutdown-blocking primary sequence tasks.
-// * Methods that return values to the javascript'able interface are performed
-// as non-shutdown-blocking primary sequence tasks.
+// * Tasks directly related to the javascript'able interface are performed
+// as shutdown-blocking primary sequence tasks.
+// TODO(michaeln): Skip tasks for reading during shutdown.
// * Internal tasks related to committing changes to disk are performed as
// shutdown-blocking commit sequence tasks.
class DomStorageTaskRunner : public base::TaskRunner {
@@ -33,7 +34,7 @@
};
// The PostTask() and PostDelayedTask() methods defined by TaskRunner
- // post non-shutdown-blocking tasks on the primary sequence.
+ // post shutdown-blocking tasks on the primary sequence.
virtual bool PostDelayedTask(
const tracked_objects::Location& from_here,
const base::Closure& task,
« no previous file with comments | « no previous file | webkit/dom_storage/dom_storage_task_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698