Index: content/browser/in_process_webkit/indexed_db_key_utility_client.cc |
diff --git a/content/browser/in_process_webkit/indexed_db_key_utility_client.cc b/content/browser/in_process_webkit/indexed_db_key_utility_client.cc |
index 7580c183934b6dc696943751f144ff2f38d8c632..abf62d7ad3d8f74456c7cee5cbfa4b74b8e92f15 100644 |
--- a/content/browser/in_process_webkit/indexed_db_key_utility_client.cc |
+++ b/content/browser/in_process_webkit/indexed_db_key_utility_client.cc |
@@ -196,7 +196,7 @@ KeyUtilityClientImpl::~KeyUtilityClientImpl() { |
} |
void KeyUtilityClientImpl::StartUtilityProcess() { |
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::WEBKIT)); |
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::WEBKIT_DEPRECATED)); |
DCHECK(state_ == STATE_UNINITIALIZED); |
GetRDHAndStartUtilityProcess(); |
@@ -209,7 +209,7 @@ void KeyUtilityClientImpl::CreateIDBKeysFromSerializedValuesAndKeyPath( |
const std::vector<content::SerializedScriptValue>& values, |
const string16& key_path, |
std::vector<IndexedDBKey>* keys) { |
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::WEBKIT)); |
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::WEBKIT_DEPRECATED)); |
if (state_ == STATE_SHUTDOWN) { |
keys->clear(); |
return; |
@@ -230,7 +230,7 @@ content::SerializedScriptValue |
const IndexedDBKey& key, |
const content::SerializedScriptValue& value, |
const string16& key_path) { |
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::WEBKIT)); |
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::WEBKIT_DEPRECATED)); |
if (state_ == STATE_SHUTDOWN) |
return content::SerializedScriptValue(); |