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 // ============================================================================= | 5 // ============================================================================= |
6 // PLEASE READ | 6 // PLEASE READ |
7 // | 7 // |
8 // In general, you should not be adding stuff to this file. | 8 // In general, you should not be adding stuff to this file. |
9 // | 9 // |
10 // - If your thing is only used in one place, just put it in a reasonable | 10 // - If your thing is only used in one place, just put it in a reasonable |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 // success. | 122 // success. |
123 BASE_EXPORT bool DisplayVirtualKeyboard(); | 123 BASE_EXPORT bool DisplayVirtualKeyboard(); |
124 | 124 |
125 // Dismisses the on screen keyboard if it is being displayed on Windows 8 and. | 125 // Dismisses the on screen keyboard if it is being displayed on Windows 8 and. |
126 // above. Returns true on success. | 126 // above. Returns true on success. |
127 BASE_EXPORT bool DismissVirtualKeyboard(); | 127 BASE_EXPORT bool DismissVirtualKeyboard(); |
128 | 128 |
129 // Returns true if the machine is enrolled to a domain. | 129 // Returns true if the machine is enrolled to a domain. |
130 BASE_EXPORT bool IsEnrolledToDomain(); | 130 BASE_EXPORT bool IsEnrolledToDomain(); |
131 | 131 |
| 132 // Marker added to certain WM_MOUSEMOVE messages. |
| 133 #define SPECIAL_MOUSEMOVE_NOT_TO_BE_TRACKED 0xbeef |
| 134 |
132 } // namespace win | 135 } // namespace win |
133 } // namespace base | 136 } // namespace base |
134 | 137 |
135 #endif // BASE_WIN_WIN_UTIL_H_ | 138 #endif // BASE_WIN_WIN_UTIL_H_ |
OLD | NEW |