Index: third_party/WebKit/Source/core/frame/FrameSerializer.h |
diff --git a/third_party/WebKit/Source/core/frame/FrameSerializer.h b/third_party/WebKit/Source/core/frame/FrameSerializer.h |
index 9aaf155303aa327a2b38ecb37bc3f76ff5d6ceef..d6c1c8ba8b4f60deb1843c3cc1df87ac2d355612 100644 |
--- a/third_party/WebKit/Source/core/frame/FrameSerializer.h |
+++ b/third_party/WebKit/Source/core/frame/FrameSerializer.h |
@@ -85,9 +85,15 @@ public: |
return false; |
} |
- // Tells whether to skip serialization of a subresource with a given URI. |
- // Used to deduplicate resources across multiple frames. |
- virtual bool shouldSkipResource(const KURL&) |
+ // Tells whether to skip serialization of a subresource or CSSStyleSheet |
+ // with a given URI. Used to deduplicate resources across multiple frames. |
+ virtual bool shouldSkipResourceWithURL(const KURL&) |
+ { |
+ return false; |
+ } |
+ |
+ // Tells whether to skip serialization of a subresource. |
+ virtual bool shouldSkipResource(Resource*) |
Łukasz Anforowicz
2016/05/19 18:50:18
nit: Can this be ever null? If not, then it proba
dewittj
2016/05/19 19:44:55
Done.
|
{ |
return false; |
} |