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

Unified Diff: third_party/WebKit/public/web/WebPageImportanceSignals.h

Issue 1303833002: Add WebPageImportanceSignals::issuedNonGetFetchFromScript() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add missing } Created 5 years, 3 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/public/web/WebPageImportanceSignals.h
diff --git a/third_party/WebKit/public/web/WebPageImportanceSignals.h b/third_party/WebKit/public/web/WebPageImportanceSignals.h
index 7328c435c5ed62da1968b88d21559bad6e60437d..6eb3dae1166823e1d0290664da6f9bd2c3bd2c02 100644
--- a/third_party/WebKit/public/web/WebPageImportanceSignals.h
+++ b/third_party/WebKit/public/web/WebPageImportanceSignals.h
@@ -20,6 +20,8 @@ public:
bool hadFormInteraction() const { return m_hadFormInteraction; }
void setHadFormInteraction();
+ bool issuedNonGetFetchFromScript() const { return m_issuedNonGetFetchFromScript; }
+ void setIssuedNonGetFetchFromScript();
BLINK_EXPORT void reset();
#if BLINK_IMPLEMENTATION
@@ -30,6 +32,8 @@ public:
private:
bool m_hadFormInteraction : 1;
+ bool m_issuedNonGetFetchFromScript : 1;
+
WebViewClient* m_observer = nullptr;
};

Powered by Google App Engine
This is Rietveld 408576698