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

Unified Diff: third_party/WebKit/Source/modules/imagebitmap/ImageBitmapRenderingContext.cpp

Issue 1913213003: Raname ImageBitmapRenderingContext's transferImageBitmap to transferFromImageBitmap (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reset test results Created 4 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/imagebitmap/ImageBitmapRenderingContext.cpp
diff --git a/third_party/WebKit/Source/modules/imagebitmap/ImageBitmapRenderingContext.cpp b/third_party/WebKit/Source/modules/imagebitmap/ImageBitmapRenderingContext.cpp
index 82ac1c2b8262bb699f086c027350aad490289625..c60a29df9d03a0e1db29556750f60bbfb6782775 100644
--- a/third_party/WebKit/Source/modules/imagebitmap/ImageBitmapRenderingContext.cpp
+++ b/third_party/WebKit/Source/modules/imagebitmap/ImageBitmapRenderingContext.cpp
@@ -25,7 +25,7 @@ void ImageBitmapRenderingContext::setCanvasGetContextResult(RenderingContext& re
result.setImageBitmapRenderingContext(this);
}
-void ImageBitmapRenderingContext::transferImageBitmap(ImageBitmap* imageBitmap)
+void ImageBitmapRenderingContext::transferFromImageBitmap(ImageBitmap* imageBitmap)
{
m_image = imageBitmap->bitmapImage();
if (!m_image)

Powered by Google App Engine
This is Rietveld 408576698