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 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_ | 5 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_ |
6 #define CHROME_COMMON_RENDER_MESSAGES_H_ | 6 #define CHROME_COMMON_RENDER_MESSAGES_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 #include <map> | 10 #include <map> |
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
488 break; | 488 break; |
489 case WebInputEvent::MOUSE_LEAVE: | 489 case WebInputEvent::MOUSE_LEAVE: |
490 type = L"MOUSE_LEAVE"; | 490 type = L"MOUSE_LEAVE"; |
491 break; | 491 break; |
492 case WebInputEvent::MOUSE_DOUBLE_CLICK: | 492 case WebInputEvent::MOUSE_DOUBLE_CLICK: |
493 type = L"MOUSE_DOUBLE_CLICK"; | 493 type = L"MOUSE_DOUBLE_CLICK"; |
494 break; | 494 break; |
495 case WebInputEvent::MOUSE_WHEEL: | 495 case WebInputEvent::MOUSE_WHEEL: |
496 type = L"MOUSE_WHEEL"; | 496 type = L"MOUSE_WHEEL"; |
497 break; | 497 break; |
| 498 case WebInputEvent::RAW_KEY_DOWN: |
| 499 type = L"RAW_KEY_DOWN"; |
| 500 break; |
498 case WebInputEvent::KEY_DOWN: | 501 case WebInputEvent::KEY_DOWN: |
499 type = L"KEY_DOWN"; | 502 type = L"KEY_DOWN"; |
500 break; | 503 break; |
501 case WebInputEvent::KEY_UP: | 504 case WebInputEvent::KEY_UP: |
502 type = L"KEY_UP"; | 505 type = L"KEY_UP"; |
503 break; | 506 break; |
504 default: | 507 default: |
505 type = L"UNKNOWN"; | 508 type = L"UNKNOWN"; |
506 break; | 509 break; |
507 } | 510 } |
(...skipping 1236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1744 }; | 1747 }; |
1745 | 1748 |
1746 | 1749 |
1747 } // namespace IPC | 1750 } // namespace IPC |
1748 | 1751 |
1749 | 1752 |
1750 #define MESSAGES_INTERNAL_FILE "chrome/common/render_messages_internal.h" | 1753 #define MESSAGES_INTERNAL_FILE "chrome/common/render_messages_internal.h" |
1751 #include "chrome/common/ipc_message_macros.h" | 1754 #include "chrome/common/ipc_message_macros.h" |
1752 | 1755 |
1753 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ | 1756 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ |
OLD | NEW |