HomeSort by relevance Sort by last modified time
    Searched refs:estimatedSize (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
WorkerGlobalScopeWebDatabase.idl 30 [RaisesException, MeasureAs=OpenWebDatabaseInWorker] Database openDatabase(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
32 [RaisesException, MeasureAs=OpenWebDatabaseSyncInWorker] DatabaseSync openDatabaseSync(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
WorkerGlobalScopeWebDatabase.h 46 static PassRefPtrWillBeRawPtr<Database> openDatabase(WorkerGlobalScope&, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&);
47 static PassRefPtrWillBeRawPtr<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, 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 = adoptRefWillBeNoop(new Database(backendContext, name, expectedVersion, displayName, estimatedSize));
73 database = adoptRefWillBeNoop(new DatabaseSync(backendContext, name, expectedVersion, displayName, estimatedSize));
DatabaseBackendSync.cpp 34 DatabaseBackendSync::DatabaseBackendSync(DatabaseContext* databaseContext, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize)
35 : DatabaseBackendBase(databaseContext, name, expectedVersion, displayName, estimatedSize, DatabaseType::Sync)
WindowWebDatabase.idl 31 [MeasureAs=OpenWebDatabase, LogActivity, RaisesException] Database openDatabase(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
DOMWindowWebDatabase.h 46 static PassRefPtrWillBeRawPtr<Database> openDatabase(LocalDOMWindow&, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&);
DatabaseBackendSync.h 50 DatabaseBackendSync(DatabaseContext*, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize);
DOMWindowWebDatabase.cpp 43 PassRefPtrWillBeRawPtr<Database> DOMWindowWebDatabase::openDatabase(LocalDOMWindow& 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);
DatabaseServer.h 42 const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize,
51 const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize,
AbstractDatabaseServer.h 46 const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize,
WorkerGlobalScopeWebDatabase.cpp 45 PassRefPtrWillBeRawPtr<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 PassRefPtrWillBeRawPtr<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 73 PassRefPtrWillBeRawPtr<Database> openDatabase(ExecutionContext*, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback>, DatabaseError&, String& errorMessage);
74 PassRefPtrWillBeRawPtr<DatabaseSync> openDatabaseSync(ExecutionContext*, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback>, DatabaseError&, String& errorMessage);
95 unsigned long estimatedSize, bool setVersionInNewDatabase, DatabaseError&, String& errorMessage);
DatabaseClient.h 53 virtual bool allowDatabase(ExecutionContext*, const String& name, const String& displayName, unsigned long estimatedSize) = 0;
DatabaseBackend.h 51 DatabaseBackend(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 68 virtual unsigned long estimatedSize() const;
100 const String& displayName, unsigned long estimatedSize, DatabaseType);
DatabaseManager.cpp 182 unsigned long estimatedSize, bool setVersionInNewDatabase, DatabaseError& error, String& errorMessage)
188 displayName, estimatedSize, setVersionInNewDatabase, error, errorMessage);
212 unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback,
219 expectedVersion, displayName, estimatedSize, setVersionInNewDatabase, error, errorMessage);
239 unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback,
247 expectedVersion, displayName, estimatedSize, setVersionInNewDatabase, error, errorMessage);
  /external/chromium_org/third_party/WebKit/public/web/
WebWorkerPermissionClientProxy.h 49 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/Source/web/
DatabaseClientImpl.cpp 54 bool DatabaseClientImpl::allowDatabase(ExecutionContext* executionContext, const String& name, const String& displayName, unsigned long estimatedSize)
64 return webFrame->permissionClient()->allowDatabase(name, displayName, estimatedSize);
67 return WorkerPermissionClient::from(workerGlobalScope)->allowDatabase(name, displayName, estimatedSize);
DatabaseClientImpl.h 46 virtual bool allowDatabase(WebCore::ExecutionContext*, const String& name, const String& displayName, unsigned long estimatedSize) OVERRIDE;
WebDatabase.cpp 58 unsigned long WebDatabase::estimatedSize() const
61 return m_database->estimatedSize();
WorkerPermissionClient.cpp 53 bool WorkerPermissionClient::allowDatabase(const WebString& name, const WebString& displayName, unsigned long estimatedSize)
57 return m_proxy->allowDatabase(name, displayName, estimatedSize);
WorkerPermissionClient.h 55 bool allowDatabase(const WebString& name, const WebString& displayName, unsigned long estimatedSize);
  /external/chromium_org/third_party/WebKit/public/platform/
WebDatabaseObserver.h 44 unsigned long estimatedSize) = 0;

Completed in 163 milliseconds

1 2 3 4