OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 #include "core/events/WheelEvent.h" | 57 #include "core/events/WheelEvent.h" |
58 #include "core/html/HTMLFormElement.h" | 58 #include "core/html/HTMLFormElement.h" |
59 #include "core/html/HTMLPlugInElement.h" | 59 #include "core/html/HTMLPlugInElement.h" |
60 #include "core/loader/FormState.h" | 60 #include "core/loader/FormState.h" |
61 #include "core/loader/FrameLoadRequest.h" | 61 #include "core/loader/FrameLoadRequest.h" |
62 #include "core/page/FocusController.h" | 62 #include "core/page/FocusController.h" |
63 #include "core/page/Frame.h" | 63 #include "core/page/Frame.h" |
64 #include "core/page/FrameView.h" | 64 #include "core/page/FrameView.h" |
65 #include "core/page/Page.h" | 65 #include "core/page/Page.h" |
66 #include "core/page/scrolling/ScrollingCoordinator.h" | 66 #include "core/page/scrolling/ScrollingCoordinator.h" |
67 #include "core/platform/PlatformGestureEvent.h" | |
68 #include "core/platform/ScrollAnimator.h" | 67 #include "core/platform/ScrollAnimator.h" |
69 #include "core/platform/ScrollView.h" | 68 #include "core/platform/ScrollView.h" |
70 #include "core/platform/ScrollbarTheme.h" | 69 #include "core/platform/ScrollbarTheme.h" |
71 #include "core/platform/chromium/ChromiumDataObject.h" | 70 #include "core/platform/chromium/ChromiumDataObject.h" |
72 #include "core/platform/chromium/KeyboardCodes.h" | 71 #include "core/platform/chromium/KeyboardCodes.h" |
73 #include "core/platform/graphics/GraphicsContext.h" | 72 #include "core/platform/graphics/GraphicsContext.h" |
74 #include "core/platform/graphics/GraphicsLayer.h" | 73 #include "core/platform/graphics/GraphicsLayer.h" |
75 #include "core/plugins/PluginOcclusionSupport.h" | 74 #include "core/plugins/PluginOcclusionSupport.h" |
76 #include "core/rendering/HitTestResult.h" | 75 #include "core/rendering/HitTestResult.h" |
77 #include "core/rendering/RenderBox.h" | 76 #include "core/rendering/RenderBox.h" |
78 #include "platform/HostWindow.h" | 77 #include "platform/HostWindow.h" |
| 78 #include "platform/PlatformGestureEvent.h" |
79 #include "platform/UserGestureIndicator.h" | 79 #include "platform/UserGestureIndicator.h" |
80 #include "public/platform/Platform.h" | 80 #include "public/platform/Platform.h" |
81 #include "public/platform/WebClipboard.h" | 81 #include "public/platform/WebClipboard.h" |
82 #include "public/platform/WebCompositorSupport.h" | 82 #include "public/platform/WebCompositorSupport.h" |
83 #include "public/platform/WebDragData.h" | 83 #include "public/platform/WebDragData.h" |
84 #include "public/platform/WebExternalTextureLayer.h" | 84 #include "public/platform/WebExternalTextureLayer.h" |
85 #include "public/platform/WebRect.h" | 85 #include "public/platform/WebRect.h" |
86 #include "public/platform/WebString.h" | 86 #include "public/platform/WebString.h" |
87 #include "public/platform/WebURL.h" | 87 #include "public/platform/WebURL.h" |
88 #include "public/platform/WebURLError.h" | 88 #include "public/platform/WebURLError.h" |
(...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
891 // Take our element and get the clip rect from the enclosing layer and | 891 // Take our element and get the clip rect from the enclosing layer and |
892 // frame view. | 892 // frame view. |
893 clipRect.intersect( | 893 clipRect.intersect( |
894 m_element->document().view()->windowClipRectForFrameOwner(m_element,
true)); | 894 m_element->document().view()->windowClipRectForFrameOwner(m_element,
true)); |
895 } | 895 } |
896 | 896 |
897 return clipRect; | 897 return clipRect; |
898 } | 898 } |
899 | 899 |
900 } // namespace WebKit | 900 } // namespace WebKit |
OLD | NEW |