| Index: third_party/WebKit/Source/core/paint/ThemePainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/ThemePainter.cpp b/third_party/WebKit/Source/core/paint/ThemePainter.cpp
|
| index e6ab416d168fdeedcc2f936b5fe317147a4d9ff7..053313536e2eeceb74818ed8157adfbcb287afb4 100644
|
| --- a/third_party/WebKit/Source/core/paint/ThemePainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/ThemePainter.cpp
|
| @@ -37,6 +37,7 @@
|
| #include "core/style/ComputedStyle.h"
|
| #include "platform/Theme.h"
|
| #include "platform/graphics/GraphicsContextStateSaver.h"
|
| +#include "platform/graphics/paint/PaintCanvas.h"
|
| #include "public/platform/Platform.h"
|
| #include "public/platform/WebFallbackThemeEngine.h"
|
| #include "public/platform/WebRect.h"
|
| @@ -363,7 +364,7 @@ bool ThemePainter::paintCheckboxUsingFallbackTheme(const LayoutObject& o,
|
| const PaintInfo& i,
|
| const IntRect& r) {
|
| WebFallbackThemeEngine::ExtraParams extraParams;
|
| - WebCanvas* canvas = i.context.canvas();
|
| + PaintCanvas* canvas = i.context.canvas();
|
| extraParams.button.checked = LayoutTheme::isChecked(o);
|
| extraParams.button.indeterminate = LayoutTheme::isIndeterminate(o);
|
|
|
|
|