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

Unified Diff: third_party/WebKit/Source/web/tests/WebFrameTest.cpp

Issue 2469873002: [ImageResource 4] Split ImageResource into Resource and Image parts (Closed)
Patch Set: comments Created 4 years, 1 month 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/tests/WebFrameTest.cpp
diff --git a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
index 7874bad19ac70ce01c7258630ca73d6056f730b9..708e68bcfe6b9aad9f49e7b7b4f82da93cee967b 100644
--- a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
+++ b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
@@ -9838,7 +9838,7 @@ TEST_F(WebFrameTest, ImageDocumentLoadFinishTime) {
EXPECT_TRUE(document->isImageDocument());
ImageDocument* imgDocument = toImageDocument(document);
- ImageResource* resource = imgDocument->cachedImage();
+ ImageResource* resource = imgDocument->cachedImageResourceDeprecated();
EXPECT_TRUE(resource);
EXPECT_NE(0, resource->loadFinishTime());

Powered by Google App Engine
This is Rietveld 408576698