Index: Source/modules/indexeddb/IDBDatabase.cpp |
diff --git a/Source/modules/indexeddb/IDBDatabase.cpp b/Source/modules/indexeddb/IDBDatabase.cpp |
index bf5cecb0f2910efcbdbdf6a8e4aa70d0caddef99..24448d9419f1012def7f0aa5674a0b0e03ff4ff9 100644 |
--- a/Source/modules/indexeddb/IDBDatabase.cpp |
+++ b/Source/modules/indexeddb/IDBDatabase.cpp |
@@ -186,7 +186,7 @@ PassRefPtr<IDBObjectStore> IDBDatabase::createObjectStore(const String& name, co |
PassRefPtr<IDBObjectStore> IDBDatabase::createObjectStore(const String& name, const IDBKeyPath& keyPath, bool autoIncrement, ExceptionState& es) |
{ |
IDB_TRACE("IDBDatabase::createObjectStore"); |
- WebKit::Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBCreateObjectStoreCall, IDBMethodsMax); |
+ blink::Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBCreateObjectStoreCall, IDBMethodsMax); |
if (!m_versionChangeTransaction) { |
es.throwDOMException(InvalidStateError, IDBDatabase::notVersionChangeTransactionErrorMessage); |
return 0; |
@@ -230,7 +230,7 @@ PassRefPtr<IDBObjectStore> IDBDatabase::createObjectStore(const String& name, co |
void IDBDatabase::deleteObjectStore(const String& name, ExceptionState& es) |
{ |
IDB_TRACE("IDBDatabase::deleteObjectStore"); |
- WebKit::Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBDeleteObjectStoreCall, IDBMethodsMax); |
+ blink::Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBDeleteObjectStoreCall, IDBMethodsMax); |
if (!m_versionChangeTransaction) { |
es.throwDOMException(InvalidStateError, IDBDatabase::notVersionChangeTransactionErrorMessage); |
return; |
@@ -258,7 +258,7 @@ void IDBDatabase::deleteObjectStore(const String& name, ExceptionState& es) |
PassRefPtr<IDBTransaction> IDBDatabase::transaction(ExecutionContext* context, const Vector<String>& scope, const String& modeString, ExceptionState& es) |
{ |
IDB_TRACE("IDBDatabase::transaction"); |
- WebKit::Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBTransactionCall, IDBMethodsMax); |
+ blink::Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBTransactionCall, IDBMethodsMax); |
if (!scope.size()) { |
es.throwDOMException(InvalidAccessError, "The storeNames parameter was empty."); |
return 0; |