Home
last modified time | relevance | path

Searched refs:requestorProcessID (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/exported/
DWebURLRequest.cpp275 int WebURLRequest::requestorProcessID() const in requestorProcessID() function in blink::WebURLRequest
277 return m_private->m_resourceRequest->requestorProcessID(); in requestorProcessID()
280 void WebURLRequest::setRequestorProcessID(int requestorProcessID) in setRequestorProcessID() argument
282 m_private->m_resourceRequest->setRequestorProcessID(requestorProcessID); in setRequestorProcessID()
/external/chromium_org/third_party/WebKit/Source/platform/network/
DResourceRequest.h165 int requestorProcessID() const { return m_requestorProcessID; } in requestorProcessID() function
166 … void setRequestorProcessID(int requestorProcessID) { m_requestorProcessID = requestorProcessID; } in setRequestorProcessID() argument
DResourceRequestTest.cpp58 EXPECT_EQ(40, original.requestorProcessID()); in TEST()
82 EXPECT_EQ(40, copy1->requestorProcessID()); in TEST()
/external/chromium_org/third_party/WebKit/public/platform/
DWebURLRequest.h202 BLINK_PLATFORM_EXPORT int requestorProcessID() const;
/external/chromium_org/content/child/
Dweb_url_loader_impl.cc391 request_info.requestor_pid = request.requestorProcessID(); in Start()