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

Unified Diff: ash/touch/touch_hud_debug.cc

Issue 2640983002: Rename paint data structures (Closed)
Patch Set: Re-add ios changes Created 3 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
Index: ash/touch/touch_hud_debug.cc
diff --git a/ash/touch/touch_hud_debug.cc b/ash/touch/touch_hud_debug.cc
index 0689e659d592f616b7113a60f180c1094940c848..5f1bfc7c8816a4acd7c98c1128d86b4565dc29fb 100644
--- a/ash/touch/touch_hud_debug.cc
+++ b/ash/touch/touch_hud_debug.cc
@@ -241,7 +241,7 @@ class TouchHudCanvas : public views::View {
SetPaintToLayer();
layer()->SetFillsBoundsOpaquely(false);
- paint_.setStyle(SkPaint::kFill_Style);
+ paint_.setStyle(cc::PaintFlags::kFill_Style);
}
~TouchHudCanvas() override {}
@@ -304,7 +304,7 @@ class TouchHudCanvas : public views::View {
}
}
- SkPaint paint_;
+ cc::PaintFlags paint_;
sky 2017/01/26 23:00:13 If PaintFlags is going to be the final name, then
const TouchLog& touch_log_;
SkPath paths_[kMaxPaths];

Powered by Google App Engine
This is Rietveld 408576698