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

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

Issue 2469873002: [ImageResource 4] Split ImageResource into Resource and Image parts (Closed)
Patch Set: Rebase Created 4 years 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 76e28a58be011f44448b2e8043b485cd0fc0f78d..0399b402e0885df4ab3bb028d9e85121cf60fa52 100644
--- a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
+++ b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
@@ -9978,7 +9978,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