| Index: third_party/WebKit/Source/core/fetch/Resource.h
|
| diff --git a/third_party/WebKit/Source/core/fetch/Resource.h b/third_party/WebKit/Source/core/fetch/Resource.h
|
| index a8066ef6e97e8cb0c18a6bd1a3447aa9b2043f2c..f730c1d93cb988a956c09e73244f6a2a687a4cb4 100644
|
| --- a/third_party/WebKit/Source/core/fetch/Resource.h
|
| +++ b/third_party/WebKit/Source/core/fetch/Resource.h
|
| @@ -419,16 +419,15 @@ class CORE_EXPORT Resource : public GarbageCollectedFinalized<Resource>,
|
| unsigned m_type : 4; // Type
|
| unsigned m_status : 3; // Status
|
|
|
| - unsigned m_needsSynchronousCacheHit : 1;
|
| - unsigned m_linkPreload : 1;
|
| - bool m_isRevalidating : 1;
|
| - bool m_isAlive : 1;
|
| + bool m_needsSynchronousCacheHit;
|
| + bool m_linkPreload;
|
| + bool m_isRevalidating;
|
| + bool m_isAlive;
|
| + bool m_isAddRemoveClientProhibited;
|
|
|
| ResourceIntegrityDisposition m_integrityDisposition;
|
| IntegrityMetadataSet m_integrityMetadata;
|
|
|
| - bool m_isAddRemoveClientProhibited;
|
| -
|
| // Ordered list of all redirects followed while fetching this resource.
|
| Vector<RedirectPair> m_redirectChain;
|
|
|
|
|