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

Unified Diff: third_party/WebKit/Source/platform/loader/fetch/Resource.h

Issue 2714403002: Revert of Check whether ScriptResource is still loading due to revalidation (Closed)
Patch Set: Created 3 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/platform/loader/fetch/Resource.h
diff --git a/third_party/WebKit/Source/platform/loader/fetch/Resource.h b/third_party/WebKit/Source/platform/loader/fetch/Resource.h
index 26e6b974999f1c1eab1e0e2335727232860a6df7..c17ba2668ab21b70ed5a35087fa6960b96bc487a 100644
--- a/third_party/WebKit/Source/platform/loader/fetch/Resource.h
+++ b/third_party/WebKit/Source/platform/loader/fetch/Resource.h
@@ -266,9 +266,6 @@
bool hasCacheControlNoStoreHeader() const;
bool mustReloadDueToVaryHeader(const ResourceRequest& newRequest) const;
- // For investigating https://crbug.com/692856.
- bool hasRevalidated() const { return m_hasRevalidated; }
-
bool isEligibleForIntegrityCheck(SecurityOrigin*) const;
void setIntegrityMetadata(const IntegrityMetadataSet& metadata) {
@@ -462,12 +459,6 @@
bool m_needsSynchronousCacheHit;
bool m_linkPreload;
bool m_isRevalidating;
-
- // For investigating https://crbug.com/692856.
- // Indicates whether at least one revalidation is done for |this|.
- // Used for assertions only.
- bool m_hasRevalidated = false;
-
bool m_isAlive;
bool m_isAddRemoveClientProhibited;
bool m_isRevalidationStartForbidden = false;

Powered by Google App Engine
This is Rietveld 408576698