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

Side by Side Diff: Source/core/page/EventHandler.cpp

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android 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/core/page/DragController.cpp ('k') | Source/core/page/PageSerializer.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) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv ed.
3 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) 3 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org)
4 * Copyright (C) 2012 Digia Plc. and/or its subsidiary(-ies) 4 * Copyright (C) 2012 Digia Plc. and/or its subsidiary(-ies)
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 #include "core/page/FocusController.h" 66 #include "core/page/FocusController.h"
67 #include "core/frame/Frame.h" 67 #include "core/frame/Frame.h"
68 #include "core/page/FrameTree.h" 68 #include "core/page/FrameTree.h"
69 #include "core/frame/FrameView.h" 69 #include "core/frame/FrameView.h"
70 #include "core/inspector/InspectorController.h" 70 #include "core/inspector/InspectorController.h"
71 #include "core/page/MouseEventWithHitTestResults.h" 71 #include "core/page/MouseEventWithHitTestResults.h"
72 #include "core/page/Page.h" 72 #include "core/page/Page.h"
73 #include "core/page/Settings.h" 73 #include "core/page/Settings.h"
74 #include "core/page/SpatialNavigation.h" 74 #include "core/page/SpatialNavigation.h"
75 #include "core/page/TouchAdjustment.h" 75 #include "core/page/TouchAdjustment.h"
76 #include "core/platform/ScrollAnimator.h"
77 #include "core/platform/Scrollbar.h"
78 #include "core/platform/chromium/ChromiumDataObject.h" 76 #include "core/platform/chromium/ChromiumDataObject.h"
79 #include "core/platform/graphics/Image.h" 77 #include "core/rendering/HitTestRequest.h"
80 #include "core/rendering/HitTestResult.h" 78 #include "core/rendering/HitTestResult.h"
81 #include "core/rendering/RenderLayer.h" 79 #include "core/rendering/RenderLayer.h"
82 #include "core/rendering/RenderTextControlSingleLine.h" 80 #include "core/rendering/RenderTextControlSingleLine.h"
83 #include "core/rendering/RenderView.h" 81 #include "core/rendering/RenderView.h"
84 #include "core/rendering/RenderWidget.h" 82 #include "core/rendering/RenderWidget.h"
85 #include "core/rendering/style/CursorList.h" 83 #include "core/rendering/style/CursorList.h"
86 #include "core/svg/SVGDocument.h" 84 #include "core/svg/SVGDocument.h"
87 #include "core/svg/SVGElementInstance.h" 85 #include "core/svg/SVGElementInstance.h"
88 #include "core/svg/SVGUseElement.h" 86 #include "core/svg/SVGUseElement.h"
89 #include "platform/PlatformGestureEvent.h" 87 #include "platform/PlatformGestureEvent.h"
90 #include "platform/PlatformKeyboardEvent.h" 88 #include "platform/PlatformKeyboardEvent.h"
91 #include "platform/PlatformTouchEvent.h" 89 #include "platform/PlatformTouchEvent.h"
92 #include "platform/PlatformWheelEvent.h" 90 #include "platform/PlatformWheelEvent.h"
93 #include "platform/WindowsKeyboardCodes.h" 91 #include "platform/WindowsKeyboardCodes.h"
94 #include "platform/geometry/FloatPoint.h" 92 #include "platform/geometry/FloatPoint.h"
93 #include "platform/graphics/Image.h"
94 #include "platform/scroll/ScrollAnimator.h"
95 #include "platform/scroll/Scrollbar.h"
95 #include "wtf/Assertions.h" 96 #include "wtf/Assertions.h"
96 #include "wtf/CurrentTime.h" 97 #include "wtf/CurrentTime.h"
97 #include "wtf/StdLibExtras.h" 98 #include "wtf/StdLibExtras.h"
98 #include "wtf/TemporaryChange.h" 99 #include "wtf/TemporaryChange.h"
99 100
100 namespace WebCore { 101 namespace WebCore {
101 102
102 using namespace HTMLNames; 103 using namespace HTMLNames;
103 using namespace SVGNames; 104 using namespace SVGNames;
104 105
(...skipping 3868 matching lines...) Expand 10 before | Expand all | Expand 10 after
3973 unsigned EventHandler::accessKeyModifiers() 3974 unsigned EventHandler::accessKeyModifiers()
3974 { 3975 {
3975 #if OS(MACOSX) 3976 #if OS(MACOSX)
3976 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; 3977 return PlatformEvent::CtrlKey | PlatformEvent::AltKey;
3977 #else 3978 #else
3978 return PlatformEvent::AltKey; 3979 return PlatformEvent::AltKey;
3979 #endif 3980 #endif
3980 } 3981 }
3981 3982
3982 } // namespace WebCore 3983 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/page/DragController.cpp ('k') | Source/core/page/PageSerializer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698