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

  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
InspectorIndexedDBAgent.h 59 virtual void clearObjectStore(ErrorString*, const String& in_securityOrigin, const String& in_databaseName, const String& in_objectStoreName, PassRefPtr<ClearObjectStoreCallback>) OVERRIDE;
InspectorIndexedDBAgent.cpp 715 class ClearObjectStore FINAL : public ExecutableWithDatabase {
717 static PassRefPtr<ClearObjectStore> create(ScriptState* scriptState, const String& objectStoreName, PassRefPtr<ClearObjectStoreCallback> requestCallback)
719 return adoptRef(new ClearObjectStore(scriptState, objectStoreName, requestCallback));
722 ClearObjectStore(ScriptState* scriptState, const String& objectStoreName, PassRefPtr<ClearObjectStoreCallback> requestCallback)
761 void InspectorIndexedDBAgent::clearObjectStore(ErrorString* errorString, const String& securityOrigin, const String& databaseName, const String& objectStoreName, PassRefPtr<ClearObjectStoreCallback> requestCallback)
773 RefPtr<ClearObjectStore> clearObjectStore = ClearObjectStore::create(scriptState, objectStoreName, requestCallback);
774 clearObjectStore->start(idbFactory, document->securityOrigin(), databaseName);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
IndexedDBModel.js 186 clearObjectStore: function(databaseId, objectStoreName, callback)
188 this._agent.clearObjectStore(databaseId.securityOrigin, databaseId.name, objectStoreName, callback);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
IndexedDBViews.js 355 this._model.clearObjectStore(this._databaseId, this._objectStore.name, cleared.bind(this));
ResourcesPanel.js     [all...]

Completed in 228 milliseconds