| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 #include "wtf/Noncopyable.h" | 41 #include "wtf/Noncopyable.h" |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 class KURL; | 45 class KURL; |
| 46 class ResourceError; | 46 class ResourceError; |
| 47 class ResourceLoader; | 47 class ResourceLoader; |
| 48 class ResourceResponse; | 48 class ResourceResponse; |
| 49 class ResourceRequest; | 49 class ResourceRequest; |
| 50 class ResourceTimingInfo; | 50 class ResourceTimingInfo; |
| 51 class WebTaskRunner; |
| 51 | 52 |
| 52 enum FetchResourceType { | 53 enum FetchResourceType { |
| 53 FetchMainResource, | 54 FetchMainResource, |
| 54 FetchSubresource | 55 FetchSubresource |
| 55 }; | 56 }; |
| 56 | 57 |
| 57 class CORE_EXPORT FetchContext : public GarbageCollectedFinalized<FetchContext>
{ | 58 class CORE_EXPORT FetchContext : public GarbageCollectedFinalized<FetchContext>
{ |
| 58 WTF_MAKE_NONCOPYABLE(FetchContext); | 59 WTF_MAKE_NONCOPYABLE(FetchContext); |
| 59 public: | 60 public: |
| 60 static FetchContext& nullInstance(); | 61 static FetchContext& nullInstance(); |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 virtual bool updateTimingInfoForIFrameNavigation(ResourceTimingInfo*) { retu
rn false; } | 100 virtual bool updateTimingInfoForIFrameNavigation(ResourceTimingInfo*) { retu
rn false; } |
| 100 virtual void sendImagePing(const KURL&); | 101 virtual void sendImagePing(const KURL&); |
| 101 virtual void addConsoleMessage(const String&) const; | 102 virtual void addConsoleMessage(const String&) const; |
| 102 virtual SecurityOrigin* securityOrigin() const { return nullptr; } | 103 virtual SecurityOrigin* securityOrigin() const { return nullptr; } |
| 103 virtual void upgradeInsecureRequest(FetchRequest&); | 104 virtual void upgradeInsecureRequest(FetchRequest&); |
| 104 virtual void addClientHintsIfNecessary(FetchRequest&); | 105 virtual void addClientHintsIfNecessary(FetchRequest&); |
| 105 virtual void addCSPHeaderIfNecessary(Resource::Type, FetchRequest&); | 106 virtual void addCSPHeaderIfNecessary(Resource::Type, FetchRequest&); |
| 106 | 107 |
| 107 virtual ResourceLoadPriority modifyPriorityForExperiments(ResourceLoadPriori
ty priority, Resource::Type, const FetchRequest&, ResourcePriority::VisibilitySt
atus) { return priority; } | 108 virtual ResourceLoadPriority modifyPriorityForExperiments(ResourceLoadPriori
ty priority, Resource::Type, const FetchRequest&, ResourcePriority::VisibilitySt
atus) { return priority; } |
| 108 | 109 |
| 110 virtual WebTaskRunner* loadingTaskRunner() const { return nullptr; } |
| 111 |
| 109 protected: | 112 protected: |
| 110 FetchContext() { } | 113 FetchContext() { } |
| 111 }; | 114 }; |
| 112 | 115 |
| 113 } | 116 } |
| 114 | 117 |
| 115 #endif | 118 #endif |
| OLD | NEW |