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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp

Issue 2738573002: Streamline the presentation of ImageBitmapRenderingContext (Closed)
Patch Set: Fixed expectations Created 3 years, 8 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/modules/accessibility/AXLayoutObject.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
index 50ae0fef03ce93252c7d5b10c7f68894b4b97b26..d51277066ffbacd1c035400658c00ce4493fdf04 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
@@ -900,7 +900,7 @@ String AXLayoutObject::imageDataUrl(const IntSize& maxSize) const {
if (!imageBitmap)
return String();
- StaticBitmapImage* bitmapImage = imageBitmap->bitmapImage();
+ RefPtr<StaticBitmapImage> bitmapImage = imageBitmap->bitmapImage();
if (!bitmapImage)
return String();

Powered by Google App Engine
This is Rietveld 408576698