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 #ifndef UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ | 5 #ifndef UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ |
6 #define UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ | 6 #define UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ |
7 | 7 |
8 #include <atlbase.h> | 8 #include <atlbase.h> |
9 #include <atlapp.h> | 9 #include <atlapp.h> |
10 #include <atlmisc.h> | 10 #include <atlmisc.h> |
11 #include <windows.h> | 11 #include <windows.h> |
12 | 12 |
13 #include <set> | 13 #include <set> |
14 | 14 |
15 #include "base/basictypes.h" | 15 #include "base/basictypes.h" |
16 #include "base/compiler_specific.h" | 16 #include "base/compiler_specific.h" |
17 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
18 #include "base/memory/weak_ptr.h" | 18 #include "base/memory/weak_ptr.h" |
19 #include "base/message_loop.h" | 19 #include "base/message_loop.h" |
20 #include "base/string16.h" | 20 #include "base/strings/string16.h" |
21 #include "base/win/win_util.h" | 21 #include "base/win/win_util.h" |
22 #include "ui/base/accessibility/accessibility_types.h" | 22 #include "ui/base/accessibility/accessibility_types.h" |
23 #include "ui/base/ui_base_types.h" | 23 #include "ui/base/ui_base_types.h" |
24 #include "ui/base/win/window_impl.h" | 24 #include "ui/base/win/window_impl.h" |
25 #include "ui/gfx/rect.h" | 25 #include "ui/gfx/rect.h" |
26 #include "ui/views/ime/input_method_delegate.h" | 26 #include "ui/views/ime/input_method_delegate.h" |
27 #include "ui/views/views_export.h" | 27 #include "ui/views/views_export.h" |
28 | 28 |
29 namespace gfx { | 29 namespace gfx { |
30 class Canvas; | 30 class Canvas; |
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 | 455 |
456 // True the first time nccalc is called on a sizable widget | 456 // True the first time nccalc is called on a sizable widget |
457 bool is_first_nccalc_; | 457 bool is_first_nccalc_; |
458 | 458 |
459 DISALLOW_COPY_AND_ASSIGN(HWNDMessageHandler); | 459 DISALLOW_COPY_AND_ASSIGN(HWNDMessageHandler); |
460 }; | 460 }; |
461 | 461 |
462 } // namespace views | 462 } // namespace views |
463 | 463 |
464 #endif // UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ | 464 #endif // UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ |
OLD | NEW |