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

Unified Diff: third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h b/third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h
index a583d021e4a2a395dce206c69193d36e9e117086..e49a8bfbce9335abe642509c2c469503b78205be 100644
--- a/third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h
+++ b/third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h
@@ -48,20 +48,20 @@ class SegmentedString;
struct CORE_EXPORT CachedDocumentParameters {
USING_FAST_MALLOC(CachedDocumentParameters);
public:
- static PassOwnPtr<CachedDocumentParameters> create(Document* document, PassRefPtrWillBeRawPtr<MediaValuesCached> mediaValues = nullptr)
+ static PassOwnPtr<CachedDocumentParameters> create(Document* document, RawPtr<MediaValuesCached> mediaValues = nullptr)
{
return adoptPtr(new CachedDocumentParameters(document, mediaValues));
}
bool doHtmlPreloadScanning;
- RefPtrWillBeCrossThreadPersistent<MediaValuesCached> mediaValues;
+ CrossThreadPersistent<MediaValuesCached> mediaValues;
Length defaultViewportMinWidth;
bool viewportMetaZeroValuesQuirk;
bool viewportMetaEnabled;
ReferrerPolicy referrerPolicy;
private:
- CachedDocumentParameters(Document*, PassRefPtrWillBeRawPtr<MediaValuesCached>);
+ CachedDocumentParameters(Document*, RawPtr<MediaValuesCached>);
};
class TokenPreloadScanner {

Powered by Google App Engine
This is Rietveld 408576698