| Index: mojo/examples/window_manager/window_manager.cc
|
| diff --git a/mojo/examples/window_manager/window_manager.cc b/mojo/examples/window_manager/window_manager.cc
|
| index bdf960963b6ac22eb07d327d5fb301fe22da8e66..04a758a3542fbcdcbdac20463a19ce0d8653284c 100644
|
| --- a/mojo/examples/window_manager/window_manager.cc
|
| +++ b/mojo/examples/window_manager/window_manager.cc
|
| @@ -201,8 +201,6 @@ class RootLayoutManager : public ViewObserver {
|
|
|
| View* content_view = view_manager_->GetViewById(content_view_id_);
|
| content_view->SetBounds(new_bounds);
|
| - // Force the view's bitmap to be recreated
|
| - content_view->SetColor(SK_ColorBLUE);
|
|
|
| int delta_width = new_bounds.width() - old_bounds.width();
|
| int delta_height = new_bounds.height() - old_bounds.height();
|
| @@ -375,8 +373,6 @@ class WindowManager
|
| view->SetBounds(gfx::Rect(root->bounds().size()));
|
| content_view_id_ = view->id();
|
|
|
| - root->SetColor(SK_ColorBLUE);
|
| -
|
| Id launcher_ui_id = CreateLauncherUI();
|
| Id control_panel_id = CreateControlPanel(view);
|
|
|
|
|