OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 VIEWS_WIDGET_CHILD_WINDOW_MESSAGE_PROCESSOR_H_ | 5 #ifndef UI_VIEWS_WIDGET_CHILD_WINDOW_MESSAGE_PROCESSOR_H_ |
6 #define VIEWS_WIDGET_CHILD_WINDOW_MESSAGE_PROCESSOR_H_ | 6 #define UI_VIEWS_WIDGET_CHILD_WINDOW_MESSAGE_PROCESSOR_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <windows.h> | 9 #include <windows.h> |
10 | 10 |
11 namespace ui { | 11 namespace ui { |
12 class ViewProp; | 12 class ViewProp; |
13 } | 13 } |
14 | 14 |
15 namespace views { | 15 namespace views { |
16 | 16 |
(...skipping 21 matching lines...) Expand all Loading... |
38 WPARAM w_param, | 38 WPARAM w_param, |
39 LPARAM l_param, | 39 LPARAM l_param, |
40 LRESULT* result) = 0; | 40 LRESULT* result) = 0; |
41 | 41 |
42 protected: | 42 protected: |
43 virtual ~ChildWindowMessageProcessor() {} | 43 virtual ~ChildWindowMessageProcessor() {} |
44 }; | 44 }; |
45 | 45 |
46 } // namespace views | 46 } // namespace views |
47 | 47 |
48 #endif // VIEWS_WIDGET_CHILD_WINDOW_MESSAGE_PROCESSOR_H_ | 48 #endif // UI_VIEWS_WIDGET_CHILD_WINDOW_MESSAGE_PROCESSOR_H_ |
OLD | NEW |