| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/apps/native_app_window_views.h" | 5 #include "chrome/browser/ui/views/apps/native_app_window_views.h" |
| 6 | 6 |
| 7 #include "apps/shell_window.h" | 7 #include "apps/shell_window.h" |
| 8 #include "apps/ui/views/shell_window_frame_view.h" | 8 #include "apps/ui/views/shell_window_frame_view.h" |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
| 11 #include "base/path_service.h" | 11 #include "base/path_service.h" |
| 12 #include "base/threading/sequenced_worker_pool.h" | 12 #include "base/threading/sequenced_worker_pool.h" |
| 13 #include "chrome/app/chrome_command_ids.h" | 13 #include "chrome/app/chrome_command_ids.h" |
| 14 #include "chrome/browser/extensions/extension_host.h" | 14 #include "chrome/browser/extensions/extension_host.h" |
| 15 #include "chrome/browser/favicon/favicon_tab_helper.h" | 15 #include "chrome/browser/favicon/favicon_tab_helper.h" |
| 16 #include "chrome/browser/profiles/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
| 17 #include "chrome/browser/ui/host_desktop.h" | 17 #include "chrome/browser/ui/host_desktop.h" |
| 18 #include "chrome/browser/ui/views/extensions/extension_keybinding_registry_views
.h" | 18 #include "chrome/browser/ui/views/extensions/extension_keybinding_registry_views
.h" |
| 19 #include "chrome/browser/web_applications/web_app.h" | 19 #include "chrome/browser/web_applications/web_app.h" |
| 20 #include "chrome/common/chrome_switches.h" | 20 #include "chrome/common/chrome_switches.h" |
| 21 #include "chrome/common/extensions/extension.h" | |
| 22 #include "content/public/browser/browser_thread.h" | 21 #include "content/public/browser/browser_thread.h" |
| 23 #include "content/public/browser/render_view_host.h" | 22 #include "content/public/browser/render_view_host.h" |
| 24 #include "content/public/browser/render_widget_host_view.h" | 23 #include "content/public/browser/render_widget_host_view.h" |
| 25 #include "content/public/browser/web_contents.h" | 24 #include "content/public/browser/web_contents.h" |
| 26 #include "content/public/browser/web_contents_view.h" | 25 #include "content/public/browser/web_contents_view.h" |
| 27 #include "extensions/common/draggable_region.h" | 26 #include "extensions/common/draggable_region.h" |
| 27 #include "extensions/common/extension.h" |
| 28 #include "ui/views/controls/webview/webview.h" | 28 #include "ui/views/controls/webview/webview.h" |
| 29 #include "ui/views/widget/widget.h" | 29 #include "ui/views/widget/widget.h" |
| 30 #include "ui/views/window/non_client_view.h" | 30 #include "ui/views/window/non_client_view.h" |
| 31 | 31 |
| 32 #if defined(OS_WIN) | 32 #if defined(OS_WIN) |
| 33 #include "base/strings/utf_string_conversions.h" | 33 #include "base/strings/utf_string_conversions.h" |
| 34 #include "chrome/browser/ui/web_applications/web_app_ui.h" | 34 #include "chrome/browser/ui/web_applications/web_app_ui.h" |
| 35 #include "chrome/browser/web_applications/web_app_win.h" | 35 #include "chrome/browser/web_applications/web_app_win.h" |
| 36 #include "ui/base/win/shell.h" | 36 #include "ui/base/win/shell.h" |
| 37 #include "ui/views/win/hwnd_util.h" | 37 #include "ui/views/win/hwnd_util.h" |
| (...skipping 840 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 878 gfx::Rect client_bounds = gfx::Rect(1000, 1000); | 878 gfx::Rect client_bounds = gfx::Rect(1000, 1000); |
| 879 gfx::Rect window_bounds = | 879 gfx::Rect window_bounds = |
| 880 window_->non_client_view()->GetWindowBoundsForClientBounds( | 880 window_->non_client_view()->GetWindowBoundsForClientBounds( |
| 881 client_bounds); | 881 client_bounds); |
| 882 return window_bounds.InsetsFrom(client_bounds); | 882 return window_bounds.InsetsFrom(client_bounds); |
| 883 } | 883 } |
| 884 | 884 |
| 885 void NativeAppWindowViews::HideWithApp() {} | 885 void NativeAppWindowViews::HideWithApp() {} |
| 886 void NativeAppWindowViews::ShowWithApp() {} | 886 void NativeAppWindowViews::ShowWithApp() {} |
| 887 void NativeAppWindowViews::UpdateWindowMinMaxSize() {} | 887 void NativeAppWindowViews::UpdateWindowMinMaxSize() {} |
| OLD | NEW |