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

Unified Diff: chrome/browser/speech/speech_recognition_bubble.cc

Issue 12088111: replace kMultiply_Mode with kModulate_Mode (the former is deprecated). No functionality change. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/speech/speech_recognition_bubble.cc
===================================================================
--- chrome/browser/speech/speech_recognition_bubble.cc (revision 180137)
+++ chrome/browser/speech/speech_recognition_bubble.cc (working copy)
@@ -237,7 +237,7 @@
image.GetRepresentation(scale_factor_).sk_bitmap(), 0, 0);
buffer_canvas.restore();
SkPaint multiply_paint;
- multiply_paint.setXfermode(SkXfermode::Create(SkXfermode::kMultiply_Mode));
+ multiply_paint.setXfermode(SkXfermode::Create(SkXfermode::kModulate_Mode));
buffer_canvas.drawBitmap(
g_images.Get().mic_mask()->GetRepresentation(scale_factor_).sk_bitmap(),
-clip_right, 0, &multiply_paint);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698