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

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

Issue 2807533003: [WIP2] off-main-thread loading
Patch Set: rebase Created 3 years, 7 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 const ResourceRequest&, 114 const ResourceRequest&,
115 Resource::Type, 115 Resource::Type,
116 const AtomicString& fetch_initiator_name) override; 116 const AtomicString& fetch_initiator_name) override;
117 void DidLoadResource(Resource*) override; 117 void DidLoadResource(Resource*) override;
118 118
119 void AddResourceTiming(const ResourceTimingInfo&) override; 119 void AddResourceTiming(const ResourceTimingInfo&) override;
120 bool AllowImage(bool images_enabled, const KURL&) const override; 120 bool AllowImage(bool images_enabled, const KURL&) const override;
121 bool IsControlledByServiceWorker() const override; 121 bool IsControlledByServiceWorker() const override;
122 int64_t ServiceWorkerID() const override; 122 int64_t ServiceWorkerID() const override;
123 123
124 int ApplicationCacheHostID() const override;
125
124 bool IsMainFrame() const override; 126 bool IsMainFrame() const override;
125 bool DefersLoading() const override; 127 bool DefersLoading() const override;
126 bool IsLoadComplete() const override; 128 bool IsLoadComplete() const override;
127 bool PageDismissalEventBeingDispatched() const override; 129 bool PageDismissalEventBeingDispatched() const override;
128 bool UpdateTimingInfoForIFrameNavigation(ResourceTimingInfo*) override; 130 bool UpdateTimingInfoForIFrameNavigation(ResourceTimingInfo*) override;
129 void SendImagePing(const KURL&) override; 131 void SendImagePing(const KURL&) override;
130 void AddConsoleMessage(const String&, 132 void AddConsoleMessage(const String&,
131 LogMessageType = kLogErrorMessage) const override; 133 LogMessageType = kLogErrorMessage) const override;
132 134
133 void PopulateResourceRequest(const KURL&, 135 void PopulateResourceRequest(const KURL&,
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 const ResourceRequest&, 187 const ResourceRequest&,
186 const KURL&, 188 const KURL&,
187 SecurityViolationReportingPolicy) const override; 189 SecurityViolationReportingPolicy) const override;
188 190
189 Member<DocumentLoader> document_loader_; 191 Member<DocumentLoader> document_loader_;
190 }; 192 };
191 193
192 } // namespace blink 194 } // namespace blink
193 195
194 #endif 196 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698