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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 bool pageDismissalEventBeingDispatched() const override; | 99 bool pageDismissalEventBeingDispatched() const override; |
100 bool updateTimingInfoForIFrameNavigation(ResourceTimingInfo*) override; | 100 bool updateTimingInfoForIFrameNavigation(ResourceTimingInfo*) override; |
101 void sendImagePing(const KURL&) override; | 101 void sendImagePing(const KURL&) override; |
102 void addConsoleMessage(const String&) const override; | 102 void addConsoleMessage(const String&) const override; |
103 SecurityOrigin* securityOrigin() const override; | 103 SecurityOrigin* securityOrigin() const override; |
104 void upgradeInsecureRequest(FetchRequest&) override; | 104 void upgradeInsecureRequest(FetchRequest&) override; |
105 void addClientHintsIfNecessary(FetchRequest&) override; | 105 void addClientHintsIfNecessary(FetchRequest&) override; |
106 void addCSPHeaderIfNecessary(Resource::Type, FetchRequest&) override; | 106 void addCSPHeaderIfNecessary(Resource::Type, FetchRequest&) override; |
107 bool isLowPriorityIframe() const override; | 107 bool isLowPriorityIframe() const override; |
108 | 108 |
| 109 bool fetchDeferLateScripts() const override; |
| 110 bool fetchIncreaseFontPriority() const override; |
| 111 bool fetchIncreaseAsyncScriptPriority() const override; |
| 112 bool fetchIncreasePriorities() const override; |
| 113 |
109 void countClientHintsDPR() override; | 114 void countClientHintsDPR() override; |
110 void countClientHintsResourceWidth() override; | 115 void countClientHintsResourceWidth() override; |
111 void countClientHintsViewportWidth() override; | 116 void countClientHintsViewportWidth() override; |
112 | 117 |
113 DECLARE_VIRTUAL_TRACE(); | 118 DECLARE_VIRTUAL_TRACE(); |
114 | 119 |
115 private: | 120 private: |
116 explicit FrameFetchContext(DocumentLoader*); | 121 explicit FrameFetchContext(DocumentLoader*); |
117 inline DocumentLoader* ensureLoaderForNotifications(); | 122 inline DocumentLoader* ensureLoaderForNotifications(); |
118 | 123 |
119 LocalFrame* frame() const; // Can be null | 124 LocalFrame* frame() const; // Can be null |
120 void printAccessDeniedMessage(const KURL&) const; | 125 void printAccessDeniedMessage(const KURL&) const; |
121 | 126 |
122 // FIXME: Oilpan: Ideally this should just be a traced Member but that will | 127 // FIXME: Oilpan: Ideally this should just be a traced Member but that will |
123 // currently leak because ComputedStyle and its data are not on the heap. | 128 // currently leak because ComputedStyle and its data are not on the heap. |
124 // See crbug.com/383860 for details. | 129 // See crbug.com/383860 for details. |
125 RawPtrWillBeWeakMember<Document> m_document; | 130 RawPtrWillBeWeakMember<Document> m_document; |
126 RawPtrWillBeMember<DocumentLoader> m_documentLoader; | 131 RawPtrWillBeMember<DocumentLoader> m_documentLoader; |
127 }; | 132 }; |
128 | 133 |
129 } | 134 } |
130 | 135 |
131 #endif | 136 #endif |
OLD | NEW |