OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "views/window/window_win.h" | 5 #include "views/window/window_win.h" |
6 | 6 |
7 #include <shellapi.h> | 7 #include <shellapi.h> |
8 | 8 |
9 #include "app/gfx/chrome_canvas.h" | 9 #include "app/gfx/chrome_canvas.h" |
10 #include "app/gfx/chrome_font.h" | 10 #include "app/gfx/chrome_font.h" |
11 #include "app/gfx/icon_util.h" | 11 #include "app/gfx/icon_util.h" |
12 #include "app/gfx/path.h" | 12 #include "app/gfx/path.h" |
13 #include "app/l10n_util.h" | 13 #include "app/l10n_util.h" |
14 #include "app/resource_bundle.h" | 14 #include "app/resource_bundle.h" |
| 15 #include "app/win_util.h" |
15 #include "base/win_util.h" | 16 #include "base/win_util.h" |
16 #include "chrome/app/chrome_dll_resource.h" | 17 #include "chrome/app/chrome_dll_resource.h" |
17 #include "chrome/common/win_util.h" | |
18 #include "grit/generated_resources.h" | 18 #include "grit/generated_resources.h" |
19 #include "views/widget/root_view.h" | 19 #include "views/widget/root_view.h" |
20 #include "views/window/client_view.h" | 20 #include "views/window/client_view.h" |
21 #include "views/window/custom_frame_view.h" | 21 #include "views/window/custom_frame_view.h" |
22 #include "views/window/native_frame_view.h" | 22 #include "views/window/native_frame_view.h" |
23 #include "views/window/non_client_view.h" | 23 #include "views/window/non_client_view.h" |
24 #include "views/window/window_delegate.h" | 24 #include "views/window/window_delegate.h" |
25 | 25 |
26 namespace { | 26 namespace { |
27 | 27 |
(...skipping 1409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1437 } | 1437 } |
1438 return TRUE; | 1438 return TRUE; |
1439 } | 1439 } |
1440 } // namespace | 1440 } // namespace |
1441 | 1441 |
1442 void Window::CloseAllSecondaryWindows() { | 1442 void Window::CloseAllSecondaryWindows() { |
1443 EnumThreadWindows(GetCurrentThreadId(), WindowCallbackProc, 0); | 1443 EnumThreadWindows(GetCurrentThreadId(), WindowCallbackProc, 0); |
1444 } | 1444 } |
1445 | 1445 |
1446 } // namespace views | 1446 } // namespace views |
OLD | NEW |