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 "chrome/views/window/window_win.h" | 5 #include "chrome/views/window/window_win.h" |
6 | 6 |
7 #include <shellapi.h> | 7 #include <shellapi.h> |
8 | 8 |
| 9 #include "app/l10n_util.h" |
9 #include "app/resource_bundle.h" | 10 #include "app/resource_bundle.h" |
10 #include "base/win_util.h" | 11 #include "base/win_util.h" |
11 #include "chrome/app/chrome_dll_resource.h" | 12 #include "chrome/app/chrome_dll_resource.h" |
12 #include "chrome/common/gfx/chrome_canvas.h" | 13 #include "chrome/common/gfx/chrome_canvas.h" |
13 #include "chrome/common/gfx/chrome_font.h" | 14 #include "chrome/common/gfx/chrome_font.h" |
14 #include "chrome/common/gfx/icon_util.h" | 15 #include "chrome/common/gfx/icon_util.h" |
15 #include "chrome/common/gfx/path.h" | 16 #include "chrome/common/gfx/path.h" |
16 #include "chrome/common/l10n_util.h" | |
17 #include "chrome/common/notification_service.h" | 17 #include "chrome/common/notification_service.h" |
18 #include "chrome/common/pref_service.h" | 18 #include "chrome/common/pref_service.h" |
19 #include "chrome/common/win_util.h" | 19 #include "chrome/common/win_util.h" |
20 #include "chrome/views/widget/root_view.h" | 20 #include "chrome/views/widget/root_view.h" |
21 #include "chrome/views/window/client_view.h" | 21 #include "chrome/views/window/client_view.h" |
22 #include "chrome/views/window/custom_frame_view.h" | 22 #include "chrome/views/window/custom_frame_view.h" |
23 #include "chrome/views/window/native_frame_view.h" | 23 #include "chrome/views/window/native_frame_view.h" |
24 #include "chrome/views/window/non_client_view.h" | 24 #include "chrome/views/window/non_client_view.h" |
25 #include "chrome/views/window/window_delegate.h" | 25 #include "chrome/views/window/window_delegate.h" |
26 #include "grit/generated_resources.h" | 26 #include "grit/generated_resources.h" |
(...skipping 1411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1438 resize_cursors_[RC_NORMAL] = LoadCursor(NULL, IDC_ARROW); | 1438 resize_cursors_[RC_NORMAL] = LoadCursor(NULL, IDC_ARROW); |
1439 resize_cursors_[RC_VERTICAL] = LoadCursor(NULL, IDC_SIZENS); | 1439 resize_cursors_[RC_VERTICAL] = LoadCursor(NULL, IDC_SIZENS); |
1440 resize_cursors_[RC_HORIZONTAL] = LoadCursor(NULL, IDC_SIZEWE); | 1440 resize_cursors_[RC_HORIZONTAL] = LoadCursor(NULL, IDC_SIZEWE); |
1441 resize_cursors_[RC_NESW] = LoadCursor(NULL, IDC_SIZENESW); | 1441 resize_cursors_[RC_NESW] = LoadCursor(NULL, IDC_SIZENESW); |
1442 resize_cursors_[RC_NWSE] = LoadCursor(NULL, IDC_SIZENWSE); | 1442 resize_cursors_[RC_NWSE] = LoadCursor(NULL, IDC_SIZENWSE); |
1443 initialized = true; | 1443 initialized = true; |
1444 } | 1444 } |
1445 } | 1445 } |
1446 | 1446 |
1447 } // namespace views | 1447 } // namespace views |
OLD | NEW |