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

Unified Diff: third_party/WebKit/Source/platform/testing/PlatformTestPrinters.cpp

Issue 2390583002: [WIP] WebFonts cache-aware timeout adaption (Closed)
Patch Set: check ERR_CACHE_MISS directly in ResourceError Created 4 years, 2 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/platform/testing/PlatformTestPrinters.cpp
diff --git a/third_party/WebKit/Source/platform/testing/PlatformTestPrinters.cpp b/third_party/WebKit/Source/platform/testing/PlatformTestPrinters.cpp
index 47441ce3d57af2a5d00fbefdc5fe5db9a4317ab3..aae2ed56e8554cf31ee18e4cc2b091a71bf30504 100644
--- a/third_party/WebKit/Source/platform/testing/PlatformTestPrinters.cpp
+++ b/third_party/WebKit/Source/platform/testing/PlatformTestPrinters.cpp
@@ -22,7 +22,8 @@ std::ostream& operator<<(std::ostream& os, const ResourceError& error) {
<< ", isAccessCheck = " << error.isAccessCheck()
<< ", isTimeout = " << error.isTimeout()
<< ", staleCopyInCache = " << error.staleCopyInCache()
- << ", wasIgnoredByHandler = " << error.wasIgnoredByHandler();
+ << ", wasIgnoredByHandler = " << error.wasIgnoredByHandler()
+ << ", isCacheMiss = " << error.isCacheMiss();
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698