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

Side by Side Diff: third_party/WebKit/Source/core/loader/FrameFetchContext.h

Issue 2343623002: Add a warning whenever link preloads are not used (Closed)
Patch Set: more comments Created 4 years, 3 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
OLDNEW
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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 90
91 bool isControlledByServiceWorker() const override; 91 bool isControlledByServiceWorker() const override;
92 int64_t serviceWorkerID() const override; 92 int64_t serviceWorkerID() const override;
93 93
94 bool isMainFrame() const override; 94 bool isMainFrame() const override;
95 bool defersLoading() const override; 95 bool defersLoading() const override;
96 bool isLoadComplete() const override; 96 bool isLoadComplete() const override;
97 bool pageDismissalEventBeingDispatched() const override; 97 bool pageDismissalEventBeingDispatched() const override;
98 bool updateTimingInfoForIFrameNavigation(ResourceTimingInfo*) override; 98 bool updateTimingInfoForIFrameNavigation(ResourceTimingInfo*) override;
99 void sendImagePing(const KURL&) override; 99 void sendImagePing(const KURL&) override;
100 void addConsoleMessage(const String&) const override; 100 void addConsoleMessage(const String&, LogMessageType = LogErrorMessage) cons t override;
101 SecurityOrigin* getSecurityOrigin() const override; 101 SecurityOrigin* getSecurityOrigin() const override;
102 void upgradeInsecureRequest(ResourceRequest&) override; 102 void upgradeInsecureRequest(ResourceRequest&) override;
103 void addClientHintsIfNecessary(FetchRequest&) override; 103 void addClientHintsIfNecessary(FetchRequest&) override;
104 void addCSPHeaderIfNecessary(Resource::Type, FetchRequest&) override; 104 void addCSPHeaderIfNecessary(Resource::Type, FetchRequest&) override;
105 void populateRequestData(ResourceRequest&) override; 105 void populateRequestData(ResourceRequest&) override;
106 106
107 MHTMLArchive* archive() const override; 107 MHTMLArchive* archive() const override;
108 108
109 ResourceLoadPriority modifyPriorityForExperiments(ResourceLoadPriority) over ride; 109 ResourceLoadPriority modifyPriorityForExperiments(ResourceLoadPriority) over ride;
110 110
(...skipping 20 matching lines...) Expand all
131 // FIXME: Oilpan: Ideally this should just be a traced Member but that will 131 // FIXME: Oilpan: Ideally this should just be a traced Member but that will
132 // currently leak because ComputedStyle and its data are not on the heap. 132 // currently leak because ComputedStyle and its data are not on the heap.
133 // See crbug.com/383860 for details. 133 // See crbug.com/383860 for details.
134 WeakMember<Document> m_document; 134 WeakMember<Document> m_document;
135 Member<DocumentLoader> m_documentLoader; 135 Member<DocumentLoader> m_documentLoader;
136 }; 136 };
137 137
138 } // namespace blink 138 } // namespace blink
139 139
140 #endif 140 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698