| Index: Source/WebKit/chromium/src/WebPluginContainerImpl.cpp
|
| diff --git a/Source/WebKit/chromium/src/WebPluginContainerImpl.cpp b/Source/WebKit/chromium/src/WebPluginContainerImpl.cpp
|
| index 68fc46c4ea64aa493dc5636f1ac4c69ac03e6edf..0bafbef25e1105aeb8d795207acb8be853b6d446 100644
|
| --- a/Source/WebKit/chromium/src/WebPluginContainerImpl.cpp
|
| +++ b/Source/WebKit/chromium/src/WebPluginContainerImpl.cpp
|
| @@ -612,7 +612,7 @@ void WebPluginContainerImpl::willEndLiveResize()
|
| bool WebPluginContainerImpl::paintCustomOverhangArea(GraphicsContext* context, const IntRect& horizontalOverhangArea, const IntRect& verticalOverhangArea, const IntRect& dirtyRect)
|
| {
|
| context->save();
|
| - context->setFillColor(Color(0xCC, 0xCC, 0xCC), ColorSpaceDeviceRGB);
|
| + context->setFillColor(Color(0xCC, 0xCC, 0xCC));
|
| context->fillRect(intersection(horizontalOverhangArea, dirtyRect));
|
| context->fillRect(intersection(verticalOverhangArea, dirtyRect));
|
| context->restore();
|
|
|