OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/ui/views/panels/panel_view.h" | 5 #include "chrome/browser/ui/views/panels/panel_view.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
11 #include "chrome/app/chrome_command_ids.h" | 11 #include "chrome/app/chrome_command_ids.h" |
12 #include "chrome/browser/profiles/profile.h" | 12 #include "chrome/browser/profiles/profile.h" |
13 #include "chrome/browser/ui/host_desktop.h" | 13 #include "chrome/browser/ui/host_desktop.h" |
14 #include "chrome/browser/ui/panels/panel.h" | 14 #include "chrome/browser/ui/panels/panel.h" |
15 #include "chrome/browser/ui/panels/panel_bounds_animation.h" | 15 #include "chrome/browser/ui/panels/panel_bounds_animation.h" |
16 #include "chrome/browser/ui/panels/panel_manager.h" | 16 #include "chrome/browser/ui/panels/panel_manager.h" |
17 #include "chrome/browser/ui/panels/stacked_panel_collection.h" | 17 #include "chrome/browser/ui/panels/stacked_panel_collection.h" |
18 #include "chrome/browser/ui/views/auto_keep_alive.h" | 18 #include "chrome/browser/ui/views/auto_keep_alive.h" |
19 #include "chrome/browser/ui/views/panels/panel_frame_view.h" | 19 #include "chrome/browser/ui/views/panels/panel_frame_view.h" |
20 #include "content/public/browser/render_view_host.h" | 20 #include "content/public/browser/render_view_host.h" |
21 #include "content/public/browser/render_widget_host_view.h" | 21 #include "content/public/browser/render_widget_host_view.h" |
22 #include "content/public/browser/web_contents.h" | 22 #include "content/public/browser/web_contents.h" |
23 #include "ui/content_accelerators/accelerator_util.h" | 23 #include "ui/content_accelerators/accelerator_util.h" |
| 24 #include "ui/gfx/host_desktop_type.h" |
24 #include "ui/gfx/image/image.h" | 25 #include "ui/gfx/image/image.h" |
25 #include "ui/gfx/path.h" | 26 #include "ui/gfx/path.h" |
26 #include "ui/gfx/screen.h" | 27 #include "ui/gfx/screen.h" |
27 #include "ui/views/controls/button/image_button.h" | 28 #include "ui/views/controls/button/image_button.h" |
28 #include "ui/views/controls/webview/webview.h" | 29 #include "ui/views/controls/webview/webview.h" |
29 #include "ui/views/widget/widget.h" | 30 #include "ui/views/widget/widget.h" |
30 | 31 |
31 #if defined(OS_WIN) | 32 #if defined(OS_WIN) |
32 #include "base/win/windows_version.h" | 33 #include "base/win/windows_version.h" |
33 #include "chrome/browser/shell_integration.h" | 34 #include "chrome/browser/shell_integration.h" |
(...skipping 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1138 // SWP_FRAMECHANGED flag must be called in order for the cached window data | 1139 // SWP_FRAMECHANGED flag must be called in order for the cached window data |
1139 // to be updated properly. | 1140 // to be updated properly. |
1140 // http://msdn.microsoft.com/en-us/library/windows/desktop/ms633591(v=vs.85).a
spx | 1141 // http://msdn.microsoft.com/en-us/library/windows/desktop/ms633591(v=vs.85).a
spx |
1141 if (update_frame) { | 1142 if (update_frame) { |
1142 ::SetWindowPos(native_window, NULL, 0, 0, 0, 0, | 1143 ::SetWindowPos(native_window, NULL, 0, 0, 0, 0, |
1143 SWP_FRAMECHANGED | SWP_NOMOVE | SWP_NOSIZE | | 1144 SWP_FRAMECHANGED | SWP_NOMOVE | SWP_NOSIZE | |
1144 SWP_NOZORDER | SWP_NOACTIVATE); | 1145 SWP_NOZORDER | SWP_NOACTIVATE); |
1145 } | 1146 } |
1146 } | 1147 } |
1147 #endif | 1148 #endif |
OLD | NEW |