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 #ifndef REMOTING_HOST_WIN_MESSAGE_WINDOW_H_ | 5 #ifndef BASE_WIN_MESSAGE_WINDOW_H_ |
6 #define REMOTING_HOST_WIN_MESSAGE_WINDOW_H_ | 6 #define BASE_WIN_MESSAGE_WINDOW_H_ |
7 | 7 |
8 #include <windows.h> | 8 #include <windows.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 | 11 |
| 12 #include "base/base_export.h" |
12 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
13 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
14 #include "base/threading/non_thread_safe.h" | 15 #include "base/threading/non_thread_safe.h" |
15 | 16 |
16 namespace remoting { | 17 namespace base { |
17 namespace win { | 18 namespace win { |
18 | 19 |
19 // Implements a message-only window. | 20 // Implements a message-only window. |
20 class MessageWindow : base::NonThreadSafe { | 21 class BASE_EXPORT MessageWindow : base::NonThreadSafe { |
21 public: | 22 public: |
22 // Handles incoming window messages. | 23 // Handles incoming window messages. |
23 class Delegate { | 24 class BASE_EXPORT Delegate { |
24 public: | 25 public: |
25 virtual ~Delegate() {} | 26 virtual ~Delegate() {} |
26 | 27 |
27 virtual bool HandleMessage(HWND hwnd, | 28 virtual bool HandleMessage(HWND hwnd, |
28 UINT message, | 29 UINT message, |
29 WPARAM wparam, | 30 WPARAM wparam, |
30 LPARAM lparam, | 31 LPARAM lparam, |
31 LRESULT* result) = 0; | 32 LRESULT* result) = 0; |
32 }; | 33 }; |
33 | 34 |
(...skipping 21 matching lines...) Expand all Loading... |
55 // Instance of the module containing the window procedure. | 56 // Instance of the module containing the window procedure. |
56 HINSTANCE instance_; | 57 HINSTANCE instance_; |
57 | 58 |
58 // Handle of the input window. | 59 // Handle of the input window. |
59 HWND window_; | 60 HWND window_; |
60 | 61 |
61 DISALLOW_COPY_AND_ASSIGN(MessageWindow); | 62 DISALLOW_COPY_AND_ASSIGN(MessageWindow); |
62 }; | 63 }; |
63 | 64 |
64 } // namespace win | 65 } // namespace win |
65 } // namespace remoting | 66 } // namespace base |
66 | 67 |
67 #endif // REMOTING_HOST_WIN_MESSAGE_WINDOW_H_ | 68 #endif // BASE_WIN_MESSAGE_WINDOW_H_ |
OLD | NEW |