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

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

Issue 2187193002: Dont bail out of preload scanning if a appcache manifest is found (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 8da9b7bf56cfd5df6002a4ffb6eadc5fe8fbfbe8..329795c691bc849b82ddb93bd3a6d6c097ca809a 100644
--- a/third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h
+++ b/third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h
@@ -103,11 +103,10 @@ private:
void updatePredictedBaseURL(const Token&);
struct Checkpoint {
- Checkpoint(const KURL& predictedBaseElementURL, bool inStyle, bool inScript, bool isAppCacheEnabled, bool isCSPEnabled, size_t templateCount)
+ Checkpoint(const KURL& predictedBaseElementURL, bool inStyle, bool inScript, bool isCSPEnabled, size_t templateCount)
: predictedBaseElementURL(predictedBaseElementURL)
, inStyle(inStyle)
, inScript(inScript)
- , isAppCacheEnabled(isAppCacheEnabled)
, isCSPEnabled(isCSPEnabled)
, templateCount(templateCount)
{
@@ -116,7 +115,6 @@ private:
KURL predictedBaseElementURL;
bool inStyle;
bool inScript;
- bool isAppCacheEnabled;
bool isCSPEnabled;
size_t templateCount;
};
@@ -140,7 +138,6 @@ private:
bool m_inStyle;
bool m_inPicture;
bool m_inScript;
- bool m_isAppCacheEnabled;
bool m_isCSPEnabled;
PictureData m_pictureData;
size_t m_templateCount;
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698