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

Unified Diff: chrome/browser/in_process_webkit/browser_webkitclient_impl.cc

Issue 6275001: Crash when using indexed db in second incognito window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/in_process_webkit/browser_webkitclient_impl.cc
===================================================================
--- chrome/browser/in_process_webkit/browser_webkitclient_impl.cc (revision 71252)
+++ chrome/browser/in_process_webkit/browser_webkitclient_impl.cc (working copy)
@@ -148,8 +148,10 @@
}
void BrowserWebKitClientImpl::idbShutdown() {
- if (indexed_db_key_utility_client_.get())
+ if (indexed_db_key_utility_client_.get()) {
indexed_db_key_utility_client_->EndUtilityProcess();
+ indexed_db_key_utility_client_ = NULL;
+ }
}
void BrowserWebKitClientImpl::createIDBKeysFromSerializedValuesAndKeyPath(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698