Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(952)

Side by Side Diff: third_party/WebKit/Source/core/fetch/RawResource.h

Issue 1866433002: Use RequestContext to apply CSP in FrameFetchContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/fetch/RawResource.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de)
3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org> 3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org>
4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) 4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
5 Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. 5 Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved.
6 6
7 This library is free software; you can redistribute it and/or 7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public 8 modify it under the terms of the GNU Library General Public
9 License as published by the Free Software Foundation; either 9 License as published by the Free Software Foundation; either
10 version 2 of the License, or (at your option) any later version. 10 version 2 of the License, or (at your option) any later version.
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 }; 73 };
74 74
75 RawResource(const ResourceRequest&, Type, const ResourceLoaderOptions&); 75 RawResource(const ResourceRequest&, Type, const ResourceLoaderOptions&);
76 76
77 void didAddClient(ResourceClient*) override; 77 void didAddClient(ResourceClient*) override;
78 void appendData(const char*, size_t) override; 78 void appendData(const char*, size_t) override;
79 79
80 bool shouldIgnoreHTTPStatusCodeErrors() const override { return !isLinkPrelo ad(); } 80 bool shouldIgnoreHTTPStatusCodeErrors() const override { return !isLinkPrelo ad(); }
81 81
82 void willFollowRedirect(ResourceRequest&, const ResourceResponse&) override; 82 void willFollowRedirect(ResourceRequest&, const ResourceResponse&) override;
83 void willNotFollowRedirect() override;
83 void responseReceived(const ResourceResponse&, PassOwnPtr<WebDataConsumerHan dle>) override; 84 void responseReceived(const ResourceResponse&, PassOwnPtr<WebDataConsumerHan dle>) override;
84 void setSerializedCachedMetadata(const char*, size_t) override; 85 void setSerializedCachedMetadata(const char*, size_t) override;
85 void didSendData(unsigned long long bytesSent, unsigned long long totalBytes ToBeSent) override; 86 void didSendData(unsigned long long bytesSent, unsigned long long totalBytes ToBeSent) override;
86 void didDownloadData(int) override; 87 void didDownloadData(int) override;
87 void reportResourceTimingToClients(const ResourceTimingInfo&) override; 88 void reportResourceTimingToClients(const ResourceTimingInfo&) override;
88 }; 89 };
89 90
90 #if ENABLE(SECURITY_ASSERT) 91 #if ENABLE(SECURITY_ASSERT)
91 inline bool isRawResource(const Resource& resource) 92 inline bool isRawResource(const Resource& resource)
92 { 93 {
(...skipping 11 matching lines...) Expand all
104 public: 105 public:
105 ~RawResourceClient() override {} 106 ~RawResourceClient() override {}
106 static bool isExpectedType(ResourceClient* client) { return client->getResou rceClientType() == RawResourceType; } 107 static bool isExpectedType(ResourceClient* client) { return client->getResou rceClientType() == RawResourceType; }
107 ResourceClientType getResourceClientType() const final { return RawResourceT ype; } 108 ResourceClientType getResourceClientType() const final { return RawResourceT ype; }
108 109
109 virtual void dataSent(Resource*, unsigned long long /* bytesSent */, unsigne d long long /* totalBytesToBeSent */) { } 110 virtual void dataSent(Resource*, unsigned long long /* bytesSent */, unsigne d long long /* totalBytesToBeSent */) { }
110 virtual void responseReceived(Resource*, const ResourceResponse&, PassOwnPtr <WebDataConsumerHandle>) { } 111 virtual void responseReceived(Resource*, const ResourceResponse&, PassOwnPtr <WebDataConsumerHandle>) { }
111 virtual void setSerializedCachedMetadata(Resource*, const char*, size_t) { } 112 virtual void setSerializedCachedMetadata(Resource*, const char*, size_t) { }
112 virtual void dataReceived(Resource*, const char* /* data */, size_t /* lengt h */) { } 113 virtual void dataReceived(Resource*, const char* /* data */, size_t /* lengt h */) { }
113 virtual void redirectReceived(Resource*, ResourceRequest&, const ResourceRes ponse&) { } 114 virtual void redirectReceived(Resource*, ResourceRequest&, const ResourceRes ponse&) { }
115 virtual void redirectReceivedAndNotFollowed() {}
Mike West 2016/04/06 07:26:37 Tiny tiny nit: This sounds clunky, but I don't hav
estark 2016/04/06 17:52:57 Sure, redirectBlocked works for me. Done.
114 virtual void dataDownloaded(Resource*, int) { } 116 virtual void dataDownloaded(Resource*, int) { }
115 virtual void didReceiveResourceTiming(Resource*, const ResourceTimingInfo&) { } 117 virtual void didReceiveResourceTiming(Resource*, const ResourceTimingInfo&) { }
116 }; 118 };
117 119
118 } // namespace blink 120 } // namespace blink
119 121
120 #endif // RawResource_h 122 #endif // RawResource_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/fetch/RawResource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698