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 d0e6d82a67b4f08a44bd893b4f46725bd79208aa..627a67af17ac5eeb63c138009f13056a92688d9f 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); |