/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebURLResponse.cpp | 32 #include "public/platform/WebURLResponse.h" 52 static PassRefPtr<ExtraDataContainer> create(WebURLResponse::ExtraData* extraData) { return adoptRef(new ExtraDataContainer(extraData)); } 56 WebURLResponse::ExtraData* extraData() const { return m_extraData.get(); } 59 explicit ExtraDataContainer(WebURLResponse::ExtraData* extraData) 64 OwnPtr<WebURLResponse::ExtraData> m_extraData; 92 void WebURLResponse::initialize() 97 void WebURLResponse::reset() 102 void WebURLResponse::assign(const WebURLResponse& r) 108 bool WebURLResponse::isNull() cons [all...] |
/external/chromium_org/content/renderer/media/ |
test_response_generator.h | 10 #include "third_party/WebKit/public/platform/WebURLResponse.h" 34 blink::WebURLResponse Generate200(); 38 blink::WebURLResponse Generate206(int64 first_byte_offset); 43 blink::WebURLResponse Generate206(int64 first_byte_offset, Flags flags); 46 blink::WebURLResponse Generate404(); 53 blink::WebURLResponse GenerateFileResponse(int64 first_byte_offset);
|
cache_util_unittest.cc | 15 #include "third_party/WebKit/public/platform/WebURLResponse.h" 18 using blink::WebURLResponse; 24 WebURLResponse::HTTPVersion version; 30 // Create a new WebURLResponse object. 31 static WebURLResponse CreateResponse(const GRFUTestCase& test) { 32 WebURLResponse response; 52 WebURLResponse::HTTP_1_1, 206, "ETag: 'fooblort'", kNoReasons 55 WebURLResponse::HTTP_1_1, 206, "", kNoStrongValidatorOnPartialResponse 58 WebURLResponse::HTTP_1_0, 206, "", 62 WebURLResponse::HTTP_1_1, 200, "cache-control: max-Age=42", kShortMaxAg [all...] |
cache_util.h | 14 class WebURLResponse; 19 // Reasons that a cached WebURLResponse will *not* prevent a future request to 37 const blink::WebURLResponse& response);
|
test_response_generator.cc | 12 #include "third_party/WebKit/public/platform/WebURLResponse.h" 16 using blink::WebURLResponse; 33 WebURLResponse TestResponseGenerator::Generate200() { 34 WebURLResponse response(gurl_); 44 WebURLResponse TestResponseGenerator::Generate206(int64 first_byte_offset) { 48 WebURLResponse TestResponseGenerator::Generate206(int64 first_byte_offset, 53 WebURLResponse response(gurl_); 82 WebURLResponse TestResponseGenerator::Generate404() { 83 WebURLResponse response(gurl_); 88 WebURLResponse TestResponseGenerator::GenerateFileResponse [all...] |
cache_util.cc | 16 #include "third_party/WebKit/public/platform/WebURLResponse.h" 21 using blink::WebURLResponse; 27 uint32 GetReasonsForUncacheability(const WebURLResponse& response) { 32 version == WebURLResponse::HTTP_1_1 ? HttpVersion(1, 1) : 33 version == WebURLResponse::HTTP_1_0 ? HttpVersion(1, 0) : 34 version == WebURLResponse::HTTP_0_9 ? HttpVersion(0, 9) :
|
/external/chromium/webkit/glue/ |
site_isolation_metrics.h | 13 class WebURLResponse; 28 WebKit::WebFrame* frame, const WebKit::WebURLResponse& response); 32 const WebKit::WebURLResponse& response);
|
multipart_response_delegate.h | 55 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLResponse.h" 71 const WebKit::WebURLResponse& response, 87 static bool ReadMultipartBoundary(const WebKit::WebURLResponse& response, 93 static bool ReadContentRanges(const WebKit::WebURLResponse& response, 108 WebKit::WebURLResponse original_response_;
|
alt_error_page_resource_fetcher.h | 15 class WebURLResponse; 41 void OnURLFetchComplete(const WebKit::WebURLResponse& response,
|
resource_fetcher.h | 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLResponse.h" 41 typedef Callback2<const WebKit::WebURLResponse&, 59 const WebKit::WebURLResponse& redirect_response); 64 WebKit::WebURLLoader* loader, const WebKit::WebURLResponse& response); 85 WebKit::WebURLResponse response_; 94 void RunCallback(const WebKit::WebURLResponse& response,
|
alt_error_page_resource_fetcher.cc | 13 using WebKit::WebURLResponse; 42 const WebURLResponse& response,
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebURLLoaderClient.h | 38 class WebURLResponse; 46 WebURLLoader*, WebURLRequest& newRequest, const WebURLResponse& redirectResponse) { } 54 virtual void didReceiveResponse(WebURLLoader*, const WebURLResponse&) { }
|
WebUnitTestSupport.h | 37 class WebURLResponse; 42 virtual void registerMockedURL(const WebURL&, const WebURLResponse&, const WebString& filePath) { } 45 virtual void registerMockedErrorURL(const WebURL&, const WebURLResponse&, const WebURLError&) { }
|
WebURLLoader.h | 41 class WebURLResponse; 53 WebURLResponse&, WebURLError&, WebData& data) = 0;
|
WebURLResponse.h | 51 class WebURLResponse { 60 ~WebURLResponse() { reset(); } 62 WebURLResponse() : m_private(0) { } 63 WebURLResponse(const WebURLResponse& r) : m_private(0) { assign(r); } 64 WebURLResponse& operator=(const WebURLResponse& r) 70 explicit WebURLResponse(const WebURL& url) : m_private(0) 78 BLINK_PLATFORM_EXPORT void assign(const WebURLResponse&);
|
/external/chromium_org/content/renderer/pepper/ |
url_response_info_util.h | 13 class WebURLResponse; 27 const blink::WebURLResponse& response,
|
/external/chromium_org/content/test/ |
weburl_loader_mock.h | 17 class WebURLResponse; 34 void ServeAsynchronousRequest(const blink::WebURLResponse& response, 40 const blink::WebURLResponse& redirectResponse); 44 blink::WebURLResponse& response,
|
weburl_loader_mock_factory.h | 14 #include "third_party/WebKit/public/platform/WebURLResponse.h" 43 const blink::WebURLResponse& response, 48 const blink::WebURLResponse& response, 68 blink::WebURLResponse* response, 79 blink::WebURLResponse response; 87 blink::WebURLResponse* response,
|
/external/chromium_org/content/public/renderer/ |
resource_fetcher.h | 22 class WebURLResponse; 36 typedef base::Callback<void(const blink::WebURLResponse& response,
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
WebURLResponseTest.cpp | 33 #include "public/platform/WebURLResponse.h" 41 class TestExtraData : public WebURLResponse::ExtraData { 59 WebURLResponse urlResponse; 67 WebURLResponse otherUrlResponse = urlResponse;
|
/external/chromium_org/content/renderer/fetchers/ |
image_resource_fetcher.h | 18 class WebURLResponse; 50 void OnURLFetchComplete(const blink::WebURLResponse& response,
|
resource_fetcher_impl.h | 18 #include "third_party/WebKit/public/platform/WebURLResponse.h" 50 void RunCallback(const blink::WebURLResponse& response, 60 const blink::WebURLResponse& redirect_response); 65 blink::WebURLLoader* loader, const blink::WebURLResponse& response); 86 blink::WebURLResponse response_;
|
resource_fetcher_impl.cc | 23 using blink::WebURLResponse; 68 void ResourceFetcherImpl::RunCallback(const WebURLResponse& response, 84 RunCallback(WebURLResponse(), std::string()); 92 const WebURLResponse& redirect_response) { 101 WebURLLoader* loader, const WebURLResponse& response) { 135 RunCallback(WebURLResponse(), std::string());
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebDataSource.h | 44 class WebURLResponse; 64 virtual const WebURLResponse& response() const = 0;
|
/external/chromium_org/webkit/child/ |
multipart_response_delegate.h | 55 #include "third_party/WebKit/public/platform/WebURLResponse.h" 72 const blink::WebURLResponse& response, 88 static bool ReadMultipartBoundary(const blink::WebURLResponse& response, 95 const blink::WebURLResponse& response, 110 blink::WebURLResponse original_response_;
|