OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:idbFactory
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBFactory.cpp
30
#include "modules/indexeddb/
IDBFactory
.h"
53
IDBFactory
::
IDBFactory
(IDBFactoryBackendInterface* permissionClient)
61
IDBFactory
::~
IDBFactory
()
75
PassRefPtr<IDBRequest>
IDBFactory
::getDatabaseNames(ExecutionContext* context, ExceptionState& exceptionState)
77
IDB_TRACE("
IDBFactory
::getDatabaseNames");
92
blink::Platform::current()->
idbFactory
()->getDatabaseNames(WebIDBCallbacksImpl::create(request).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(context->securityOrigin()));
96
PassRefPtr<IDBOpenDBRequest>
IDBFactory
::open(ExecutionContext* context, const String& name, unsigned long long version, ExceptionState& exceptionState)
98
IDB_TRACE("
IDBFactory
::open")
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorIndexedDBAgent.cpp
49
#include "modules/indexeddb/
IDBFactory
.h"
139
void start(
IDBFactory
*, SecurityOrigin*, const String& databaseName);
188
void ExecutableWithDatabase::start(
IDBFactory
*
idbFactory
, SecurityOrigin*, const String& databaseName)
192
RefPtr<IDBOpenDBRequest> idbOpenDBRequest =
idbFactory
->open(context(), databaseName, exceptionState);
581
static
IDBFactory
* assertIDBFactory(ErrorString* errorString, Document* document)
588
IDBFactory
*
idbFactory
= DOMWindowIndexedDatabase::indexedDB(domWindow);
590
if (!
idbFactory
)
593
return
idbFactory
;
[
all
...]
/external/chromium_org/content/test/
test_webkit_platform_support.h
35
virtual blink::WebIDBFactory*
idbFactory
();
test_webkit_platform_support.cc
129
blink::WebIDBFactory* TestWebKitPlatformSupport::
idbFactory
() {
/external/chromium_org/content/worker/
worker_webkitplatformsupport_impl.h
75
virtual blink::WebIDBFactory*
idbFactory
();
worker_webkitplatformsupport_impl.cc
212
blink::WebIDBFactory* WorkerWebKitPlatformSupportImpl::
idbFactory
() {
/external/chromium_org/content/renderer/
renderer_webkitplatformsupport_impl.h
94
virtual blink::WebIDBFactory*
idbFactory
();
renderer_webkitplatformsupport_impl.cc
372
WebIDBFactory* RendererWebKitPlatformSupportImpl::
idbFactory
() {
[
all
...]
/external/chromium_org/third_party/WebKit/public/platform/
Platform.h
212
virtual WebIDBFactory*
idbFactory
() { return 0; }
Completed in 870 milliseconds