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

Unified Diff: third_party/WebKit/Source/web/WebDocument.cpp

Issue 1972503002: Add flag "distillability-dev" for distillability development Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix tests Created 4 years, 7 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/web/WebDocument.cpp
diff --git a/third_party/WebKit/Source/web/WebDocument.cpp b/third_party/WebKit/Source/web/WebDocument.cpp
index 12eeb25ef2549e65a1916c8d03091598f7b9a2a1..33731b7f3d8b291d4db31a63054b61e1087e7a09 100644
--- a/third_party/WebKit/Source/web/WebDocument.cpp
+++ b/third_party/WebKit/Source/web/WebDocument.cpp
@@ -323,9 +323,9 @@ bool WebDocument::manifestUseCredentials() const
return equalIgnoringCase(linkElement->fastGetAttribute(HTMLNames::crossoriginAttr), "use-credentials");
}
-WebDistillabilityFeatures WebDocument::distillabilityFeatures()
+WebDistillabilityFeatures WebDocument::distillabilityFeatures(bool dumpInfo)
{
- return DocumentStatisticsCollector::collectStatistics(*unwrap<Document>());
+ return DocumentStatisticsCollector::collectStatistics(*unwrap<Document>(), dumpInfo);
}
WebDocument::WebDocument(Document* elem)

Powered by Google App Engine
This is Rietveld 408576698