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

  /external/chromium_org/content/browser/worker_host/
worker_document_set.cc 15 unsigned long long document_id,
18 DocumentInfo info(parent, document_id, render_process_id, render_frame_id);
23 unsigned long long document_id) const {
26 if (i->filter() == parent && i->document_id() == document_id)
43 unsigned long long document_id) {
46 if (i->filter() == parent && i->document_id() == document_id) {
52 DCHECK(!Contains(parent, document_id));
72 BrowserMessageFilter* filter, unsigned long long document_id,
    [all...]
worker_document_set.h 27 DocumentInfo(BrowserMessageFilter* filter, unsigned long long document_id,
30 unsigned long long document_id() const { return document_id_; } function in class:content::WorkerDocumentSet::DocumentInfo
37 // Items are identical if the sender and document_id are identical,
41 return document_id() < other.document_id();
59 unsigned long long document_id,
65 unsigned long long document_id) const;
73 void Remove(BrowserMessageFilter* parent, unsigned long long document_id);
worker_message_filter.h 44 void OnDocumentDetached(unsigned long long document_id);
worker_message_filter.cc 71 void WorkerMessageFilter::OnDocumentDetached(unsigned long long document_id) {
72 WorkerServiceImpl::GetInstance()->DocumentDetached(document_id, this);
worker_service_impl.h 51 void DocumentDetached(unsigned long long document_id,
worker_service_impl.cc 311 filter, params.document_id, filter->render_process_id(),
340 filter, params.document_id, filter->render_process_id(),
356 void WorkerServiceImpl::DocumentDetached(unsigned long long document_id,
360 iter->DocumentDetached(filter, document_id);
366 iter->worker_document_set()->Remove(filter, document_id);
worker_process_host.cc 623 unsigned long long document_id) {
631 if (doc->filter() == filter && doc->document_id() == document_id) {
636 i->worker_document_set()->Remove(filter, document_id);
worker_process_host.h 184 unsigned long long document_id);
  /external/chromium_org/content/renderer/
shared_worker_repository.h 29 DocumentID document_id,
32 virtual void documentDetached(DocumentID document_id) OVERRIDE;
shared_worker_repository.cc 27 DocumentID document_id,
36 params.document_id = document_id;
41 documents_with_workers_.insert(document_id);
43 document_id,
websharedworker_proxy.h 31 unsigned long long document_id,
websharedworker_proxy.cc 17 unsigned long long document_id,
23 document_id_(document_id),
  /external/chromium_org/content/test/plugin/
plugin_npobject_proxy_test.cc 22 NPIdentifier document_id = HostFunctions()->getstringidentifier("document");
30 HostFunctions()->getproperty(id(), window_obj, document_id, &docv); local
  /external/chromium_org/content/browser/shared_worker/
shared_worker_message_filter.cc 97 unsigned long long document_id) {
98 SharedWorkerServiceImpl::GetInstance()->DocumentDetached(document_id, this);
shared_worker_message_filter.h 48 void OnDocumentDetached(unsigned long long document_id);
shared_worker_service_impl.cc 106 unsigned long long document_id,
111 document_id(document_id),
116 const unsigned long long document_id; member in struct:content::SharedWorkerServiceImpl::SharedWorkerPendingInstance::SharedWorkerPendingRequest
154 request->document_id,
296 params.document_id,
325 unsigned long long document_id,
331 iter->second->DocumentDetached(filter, document_id);
shared_worker_host.h 55 unsigned long long document_id);
shared_worker_service_impl.h 58 void DocumentDetached(unsigned long long document_id,
shared_worker_host.cc 149 unsigned long long document_id) {
153 worker_document_set_->Remove(filter, document_id);
shared_worker_service_impl_unittest.cc 244 unsigned long long document_id,
252 params.document_id = document_id;
269 unsigned long long document_id,
279 document_id,
    [all...]
  /external/chromium_org/content/common/
view_messages.h 313 IPC_STRUCT_MEMBER(unsigned long long, document_id)
    [all...]

Completed in 351 milliseconds