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

Side by Side Diff: Source/web/PopupListBox.cpp

Issue 60153002: Move KeyboardCodes to platform/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove stray reference to KeyboardCodes.h Created 7 years 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 | « Source/platform/blink_platform.gypi ('k') | Source/web/WebInputEvent.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2011, Google Inc. All rights reserved. 2 * Copyright (c) 2011, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 17 matching lines...) Expand all
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "config.h" 31 #include "config.h"
32 #include "PopupListBox.h" 32 #include "PopupListBox.h"
33 33
34 #include "CSSValueKeywords.h" 34 #include "CSSValueKeywords.h"
35 #include "PopupContainer.h" 35 #include "PopupContainer.h"
36 #include "PopupMenuChromium.h" 36 #include "PopupMenuChromium.h"
37 #include "RuntimeEnabledFeatures.h" 37 #include "RuntimeEnabledFeatures.h"
38 #include "core/platform/chromium/KeyboardCodes.h"
39 #include "core/rendering/RenderTheme.h" 38 #include "core/rendering/RenderTheme.h"
39 #include "platform/KeyboardCodes.h"
40 #include "platform/PlatformGestureEvent.h" 40 #include "platform/PlatformGestureEvent.h"
41 #include "platform/PlatformKeyboardEvent.h" 41 #include "platform/PlatformKeyboardEvent.h"
42 #include "platform/PlatformMouseEvent.h" 42 #include "platform/PlatformMouseEvent.h"
43 #include "platform/PlatformScreen.h" 43 #include "platform/PlatformScreen.h"
44 #include "platform/PlatformTouchEvent.h" 44 #include "platform/PlatformTouchEvent.h"
45 #include "platform/PlatformWheelEvent.h" 45 #include "platform/PlatformWheelEvent.h"
46 #include "platform/PopupMenuClient.h" 46 #include "platform/PopupMenuClient.h"
47 #include "platform/fonts/Font.h" 47 #include "platform/fonts/Font.h"
48 #include "platform/fonts/FontCache.h" 48 #include "platform/fonts/FontCache.h"
49 #include "platform/fonts/FontSelector.h" 49 #include "platform/fonts/FontSelector.h"
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after
937 { 937 {
938 return numItems() && IntRect(0, 0, width(), height()).contains(point); 938 return numItems() && IntRect(0, 0, width(), height()).contains(point);
939 } 939 }
940 940
941 int PopupListBox::popupContentHeight() const 941 int PopupListBox::popupContentHeight() const
942 { 942 {
943 return height(); 943 return height();
944 } 944 }
945 945
946 } // namespace WebCore 946 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/platform/blink_platform.gypi ('k') | Source/web/WebInputEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698