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

Unified Diff: Source/web/WebPageImportanceSignals.cpp

Issue 1296533003: Introduce WebPageImportanceSignals to judge state preservation needs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: nits Created 5 years, 4 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 | « Source/web/ChromeClientImpl.cpp ('k') | Source/web/WebViewImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebPageImportanceSignals.cpp
diff --git a/Source/web/WebPageImportanceSignals.cpp b/Source/web/WebPageImportanceSignals.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..b0e5de9a41abef1bfba6a63e6bfd671913fb27de
--- /dev/null
+++ b/Source/web/WebPageImportanceSignals.cpp
@@ -0,0 +1,24 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "config.h"
+#include "public/web/WebPageImportanceSignals.h"
+
+#include "public/platform/Platform.h"
+
+namespace blink {
+
+void WebPageImportanceSignals::reset()
+{
+ m_hadFormInteraction = false;
+}
+
+void WebPageImportanceSignals::onCommitLoad()
+{
+ Platform::current()->histogramEnumeration("PageImportanceSignals.HadFormInteraction.OnCommitLoad", m_hadFormInteraction, 2);
+
+ reset();
+}
+
+} // namespace blink
« no previous file with comments | « Source/web/ChromeClientImpl.cpp ('k') | Source/web/WebViewImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698