Chromium Code Reviews| Index: Source/core/page/FrameView.cpp |
| diff --git a/Source/core/page/FrameView.cpp b/Source/core/page/FrameView.cpp |
| index 4757b48ee2ac59f7965506ae8056467552c12dfd..eb9f270fd3c4598e9e34bb6cc5132454869a3599 100644 |
| --- a/Source/core/page/FrameView.cpp |
| +++ b/Source/core/page/FrameView.cpp |
| @@ -2990,8 +2990,8 @@ void FrameView::paintControlTints() |
| { |
| if (needsLayout()) |
| layout(); |
| - PlatformGraphicsContext* const noContext = 0; |
| - GraphicsContext context(noContext); |
| + // FIXME: THe use of paint seems like overkill: crbug.com/236892 |
|
jamesr
2013/04/30 19:57:08
typo "THe"
|
| + GraphicsContext context(0); // NULL canvas to get a non-painting context. |
| context.setUpdatingControlTints(true); |
| paint(&context, frameRect()); |
| } |