| Index: third_party/WebKit/Source/web/PageWidgetDelegate.cpp
|
| diff --git a/third_party/WebKit/Source/web/PageWidgetDelegate.cpp b/third_party/WebKit/Source/web/PageWidgetDelegate.cpp
|
| index 85a1aad0d198d4d81b98179d4ebf713ab2370fda..e6052b9b031a0a7fa9805acf9cac7c173ed82c50 100644
|
| --- a/third_party/WebKit/Source/web/PageWidgetDelegate.cpp
|
| +++ b/third_party/WebKit/Source/web/PageWidgetDelegate.cpp
|
| @@ -83,10 +83,10 @@ static void paintInternal(Page& page, WebCanvas* canvas,
|
| IntRect dirtyRect(rect);
|
| FrameView* view = root.view();
|
| if (view) {
|
| - ClipRecorder clipRecorder(paintContext, pictureBuilder, DisplayItem::PageWidgetDelegateClip, dirtyRect);
|
| + ClipRecorder clipRecorder(paintContext, pictureBuilder, DisplayItem::kPageWidgetDelegateClip, dirtyRect);
|
| view->paint(paintContext, globalPaintFlags, CullRect(dirtyRect));
|
| } else {
|
| - DrawingRecorder drawingRecorder(paintContext, pictureBuilder, DisplayItem::PageWidgetDelegateBackgroundFallback, dirtyRect);
|
| + DrawingRecorder drawingRecorder(paintContext, pictureBuilder, DisplayItem::kPageWidgetDelegateBackgroundFallback, dirtyRect);
|
| paintContext.fillRect(dirtyRect, Color::white);
|
| }
|
| }
|
|
|