| Index: views/widget/root_view_gtk.cc
|
| diff --git a/views/widget/root_view_gtk.cc b/views/widget/root_view_gtk.cc
|
| old mode 100644
|
| new mode 100755
|
| index 8f0c4950f1f78f3dcc081722da02f674ce2e19a6..1225efe5ef6bb1eda83096d496debf30a20d9cc5
|
| --- a/views/widget/root_view_gtk.cc
|
| +++ b/views/widget/root_view_gtk.cc
|
| @@ -6,7 +6,7 @@
|
|
|
| #include <gtk/gtk.h>
|
|
|
| -#include "app/gfx/canvas.h"
|
| +#include "app/gfx/canvas_paint.h"
|
| #include "base/logging.h"
|
| #include "views/widget/widget_gtk.h"
|
|
|
| @@ -15,7 +15,7 @@ namespace views {
|
| void RootView::OnPaint(GdkEventExpose* event) {
|
| gfx::CanvasPaint canvas(event);
|
|
|
| - if (!canvas.isEmpty()) {
|
| + if (!canvas.is_empty()) {
|
| canvas.set_composite_alpha(
|
| static_cast<WidgetGtk*>(GetWidget())->is_transparent());
|
| SchedulePaint(gfx::Rect(canvas.rectangle()), false);
|
|
|