Index: public/web/WebPageImportanceSignals.h |
diff --git a/public/web/WebPageImportanceSignals.h b/public/web/WebPageImportanceSignals.h |
index 6e50ff9d9f7b044d8ab1b44250ac5df630683c98..ead425b6beaf206301d7dc330653f4232c231aa4 100644 |
--- a/public/web/WebPageImportanceSignals.h |
+++ b/public/web/WebPageImportanceSignals.h |
@@ -18,6 +18,8 @@ public: |
bool hadFormInteraction() const { return m_hadFormInteraction; } |
void setHadFormInteraction() { m_hadFormInteraction = true; } |
+ bool issuedNonGetXHR() const { return m_issuedNonGetXHR; } |
+ void setIssuedNonGetXHR() { m_issuedNonGetXHR = true; } |
BLINK_EXPORT void reset(); |
#if BLINK_IMPLEMENTATION |
@@ -26,6 +28,7 @@ public: |
private: |
bool m_hadFormInteraction : 1; |
+ bool m_issuedNonGetXHR : 1; |
}; |
} // namespace blink |