Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: chrome/common/render_messages.h

Issue 27332: Fixing WebKeyboardEvent. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/tab_contents/web_contents_view_win.cc ('k') | webkit/glue/SConscript » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/tab_contents/web_contents_view_win.cc ('k') | webkit/glue/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698