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

Unified Diff: android_webview/native/aw_picture.cc

Issue 795823003: API migration: picture.draw -> picture.playback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix android call-site Created 6 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
« no previous file with comments | « no previous file | cc/resources/drawing_display_item.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/native/aw_picture.cc
diff --git a/android_webview/native/aw_picture.cc b/android_webview/native/aw_picture.cc
index 625999d848c8dada7edbd6f9def2a5da67a665ce..348e1a0aefe1e2fce37cd01cd8162f5e2268926e 100644
--- a/android_webview/native/aw_picture.cc
+++ b/android_webview/native/aw_picture.cc
@@ -39,7 +39,7 @@ void AwPicture::Draw(JNIEnv* env, jobject obj, jobject canvas) {
LOG(ERROR) << "Couldn't draw picture";
return;
}
- picture_->draw(canvas_holder->GetCanvas());
+ picture_->playback(canvas_holder->GetCanvas());
}
bool RegisterAwPicture(JNIEnv* env) {
« no previous file with comments | « no previous file | cc/resources/drawing_display_item.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698