summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--content/shell/browser/shell_views.cc1
-rw-r--r--ui/views/examples/examples_window.cc1
2 files changed, 0 insertions, 2 deletions
diff --git a/content/shell/browser/shell_views.cc b/content/shell/browser/shell_views.cc
index 282ab5d..aa47582 100644
--- a/content/shell/browser/shell_views.cc
+++ b/content/shell/browser/shell_views.cc
@@ -503,7 +503,6 @@ void Shell::PlatformCreateWindow(int width, int height) {
views::Widget::InitParams params;
params.bounds = gfx::Rect(0, 0, width, height);
params.delegate = new ShellWindowDelegateView(this);
- params.remove_standard_frame = true;
window_widget_->Init(params);
#endif
diff --git a/ui/views/examples/examples_window.cc b/ui/views/examples/examples_window.cc
index 5547444..3aa9802 100644
--- a/ui/views/examples/examples_window.cc
+++ b/ui/views/examples/examples_window.cc
@@ -221,7 +221,6 @@ void ShowExamplesWindow(Operation operation,
params.delegate = new ExamplesWindowContents(operation, examples.Pass());
params.context = window_context;
params.bounds = gfx::Rect(0, 0, 850, 300);
- params.remove_standard_frame = true;
widget->Init(params);
widget->Show();
}