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

  /external/chromium_org/third_party/WebKit/public/web/
WebSharedWorkerRepositoryClient.h 45 typedef unsigned long long DocumentID;
48 virtual WebSharedWorkerConnector* createSharedWorkerConnector(const WebURL& url, const WebString& name, DocumentID id, const WebString& contentSecurityPolicy, WebContentSecurityPolicyType) { return 0; }
51 // Invoked when a document has been detached. DocumentID can be re-used after documentDetached() is invoked.
52 virtual void documentDetached(DocumentID) { }
  /external/chromium_org/content/renderer/
shared_worker_repository.h 29 DocumentID document_id,
32 virtual void documentDetached(DocumentID document_id) OVERRIDE;
35 std::set<DocumentID> documents_with_workers_;
shared_worker_repository.cc 27 DocumentID document_id,
48 void SharedWorkerRepository::documentDetached(DocumentID document) {
49 std::set<DocumentID>::iterator iter = documents_with_workers_.find(document);
  /external/chromium_org/third_party/WebKit/Source/web/
SharedWorkerRepositoryClientImpl.cpp 106 static WebSharedWorkerRepositoryClient::DocumentID getId(void* document)
109 return reinterpret_cast<WebSharedWorkerRepositoryClient::DocumentID>(document);

Completed in 455 milliseconds