HomeSort by relevance Sort by last modified time
    Searched defs:clearObjectStore (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorIndexedDBAgent.cpp 720 class ClearObjectStore : public ExecutableWithDatabase {
722 static PassRefPtr<ClearObjectStore> create(ScriptExecutionContext* context, const String& objectStoreName, PassRefPtr<ClearObjectStoreCallback> requestCallback)
724 return adoptRef(new ClearObjectStore(context, objectStoreName, requestCallback));
727 ClearObjectStore(ScriptExecutionContext* context, const String& objectStoreName, PassRefPtr<ClearObjectStoreCallback> requestCallback)
767 void InspectorIndexedDBAgent::clearObjectStore(ErrorString* errorString, const String& securityOrigin, const String& databaseName, const String& objectStoreName, PassRefPtr<ClearObjectStoreCallback> requestCallback)
783 RefPtr<ClearObjectStore> clearObjectStore = ClearObjectStore::create(document, objectStoreName, requestCallback);
784 clearObjectStore->start(idbFactory, document->securityOrigin(), databaseName);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
IndexedDBModel.js 172 clearObjectStore: function(databaseId, objectStoreName, callback)
174 IndexedDBAgent.clearObjectStore(databaseId.securityOrigin, databaseId.name, objectStoreName, callback);

Completed in 52 milliseconds