/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
WorkerGlobalScopeWebDatabase.idl | 28 [RuntimeEnabled=Database, RaisesException] Database openDatabase(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback); 30 [RuntimeEnabled=Database, RaisesException] DatabaseSync openDatabaseSync(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
|
WorkerGlobalScopeWebDatabase.h | 45 static PassRefPtr<Database> openDatabase(WorkerGlobalScope*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&); 46 static PassRefPtr<DatabaseSync> openDatabaseSync(WorkerGlobalScope*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&);
|
DatabaseServer.cpp | 55 unsigned long estimatedSize, bool setVersionInNewDatabase, DatabaseError &error, String& errorMessage) 58 if (DatabaseTracker::tracker().canEstablishDatabase(backendContext.get(), name, displayName, estimatedSize, error)) 59 database = createDatabase(backendContext, type, name, expectedVersion, displayName, estimatedSize, setVersionInNewDatabase, error, errorMessage); 65 unsigned long estimatedSize, bool setVersionInNewDatabase, DatabaseError& error, String& errorMessage) 70 database = adoptRef(new Database(backendContext, name, expectedVersion, displayName, estimatedSize)); 73 database = adoptRef(new DatabaseSync(backendContext, name, expectedVersion, displayName, estimatedSize));
|
DatabaseBackendSync.cpp | 34 DatabaseBackendSync::DatabaseBackendSync(PassRefPtr<DatabaseContext> databaseContext, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize) 35 : DatabaseBackendBase(databaseContext, name, expectedVersion, displayName, estimatedSize, DatabaseType::Sync)
|
DatabaseServer.h | 41 const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize, 50 const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize,
|
WindowWebDatabase.idl | 30 [RuntimeEnabled=Database, MeasureAs=OpenWebDatabase, PerWorldBindings, ActivityLogging=ForIsolatedWorlds, RaisesException] Database openDatabase(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
|
DOMWindowWebDatabase.h | 45 static PassRefPtr<Database> openDatabase(DOMWindow*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&);
|
DatabaseBackendSync.h | 49 DatabaseBackendSync(PassRefPtr<DatabaseContext>, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize);
|
DOMWindowWebDatabase.cpp | 43 PassRefPtr<Database> DOMWindowWebDatabase::openDatabase(DOMWindow* window, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState& exceptionState) 53 database = dbManager.openDatabase(window->document(), name, version, displayName, estimatedSize, creationCallback, error, errorMessage);
|
AbstractDatabaseServer.h | 45 const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize,
|
DatabaseClient.h | 49 virtual bool allowDatabase(ExecutionContext*, const String& name, const String& displayName, unsigned long estimatedSize) = 0;
|
WorkerGlobalScopeWebDatabase.cpp | 45 PassRefPtr<Database> WorkerGlobalScopeWebDatabase::openDatabase(WorkerGlobalScope* context, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState& exceptionState) 52 database = dbManager.openDatabase(context, name, version, displayName, estimatedSize, creationCallback, error, errorMessage); 63 PassRefPtr<DatabaseSync> WorkerGlobalScopeWebDatabase::openDatabaseSync(WorkerGlobalScope* context, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState& exceptionState) 70 database = dbManager.openDatabaseSync(context, name, version, displayName, estimatedSize, creationCallback, error, errorMessage);
|
DatabaseManager.h | 76 PassRefPtr<Database> openDatabase(ExecutionContext*, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback>, DatabaseError&, String& errorMessage); 77 PassRefPtr<DatabaseSync> openDatabaseSync(ExecutionContext*, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback>, DatabaseError&, String& errorMessage); 98 unsigned long estimatedSize, bool setVersionInNewDatabase, DatabaseError&, String& errorMessage);
|
DatabaseBackend.h | 51 DatabaseBackend(PassRefPtr<DatabaseContext>, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize);
|
DatabaseTracker.h | 57 bool canEstablishDatabase(DatabaseContext*, const String& name, const String& displayName, unsigned long estimatedSize, DatabaseError&);
|
DatabaseBackendBase.h | 66 virtual unsigned long estimatedSize() const; 99 const String& displayName, unsigned long estimatedSize, DatabaseType);
|
DatabaseManager.cpp | 186 unsigned long estimatedSize, bool setVersionInNewDatabase, DatabaseError& error, String& errorMessage) 194 displayName, estimatedSize, setVersionInNewDatabase, error, errorMessage); 218 unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, 225 expectedVersion, displayName, estimatedSize, setVersionInNewDatabase, error, errorMessage); 246 unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, 254 expectedVersion, displayName, estimatedSize, setVersionInNewDatabase, error, errorMessage);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
DatabaseClientImpl.cpp | 55 bool DatabaseClientImpl::allowDatabase(ExecutionContext* executionContext, const String& name, const String& displayName, unsigned long estimatedSize) 65 return webFrame->permissionClient()->allowDatabase(webFrame, name, displayName, estimatedSize); 71 return webView->permissionClient()->allowDatabase(webFrame, name, displayName, estimatedSize); 74 return WorkerPermissionClient::from(workerGlobalScope)->allowDatabase(name, displayName, estimatedSize);
|
DatabaseClientImpl.h | 45 virtual bool allowDatabase(WebCore::ExecutionContext*, const String& name, const String& displayName, unsigned long estimatedSize) OVERRIDE;
|
WorkerPermissionClient.cpp | 52 bool WorkerPermissionClient::allowDatabase(const WebString& name, const WebString& displayName, unsigned long estimatedSize) 56 return m_proxy->allowDatabase(name, displayName, estimatedSize);
|
WorkerPermissionClient.h | 53 bool allowDatabase(const WebString& name, const WebString& displayName, unsigned long estimatedSize);
|
WebDatabase.cpp | 58 unsigned long WebDatabase::estimatedSize() const 61 return m_database->estimatedSize();
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebWorkerPermissionClientProxy.h | 46 virtual bool allowDatabase(const WebString& name, const WebString& displayName, unsigned long estimatedSize)
|
WebDatabase.h | 47 BLINK_EXPORT unsigned long estimatedSize() const;
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebDatabaseObserver.h | 44 unsigned long estimatedSize) = 0;
|