| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 #include "FrameView.h" | 51 #include "FrameView.h" |
| 52 #include "GestureEvent.h" | 52 #include "GestureEvent.h" |
| 53 #include "HTMLFormElement.h" | 53 #include "HTMLFormElement.h" |
| 54 #include "HTMLNames.h" | 54 #include "HTMLNames.h" |
| 55 #include "HTMLPlugInElement.h" | 55 #include "HTMLPlugInElement.h" |
| 56 #include "IFrameShimSupport.h" | 56 #include "IFrameShimSupport.h" |
| 57 #include "KeyboardEvent.h" | 57 #include "KeyboardEvent.h" |
| 58 #include "MouseEvent.h" | 58 #include "MouseEvent.h" |
| 59 #include "Page.h" | 59 #include "Page.h" |
| 60 #include "ScriptController.h" | 60 #include "ScriptController.h" |
| 61 #include "ScrollingCoordinator.h" | |
| 62 #include "TouchEvent.h" | 61 #include "TouchEvent.h" |
| 63 #include "UserGestureIndicator.h" | 62 #include "UserGestureIndicator.h" |
| 64 #include "WebPrintParams.h" | 63 #include "WebPrintParams.h" |
| 65 #include "WheelEvent.h" | 64 #include "WheelEvent.h" |
| 66 #include "core/loader/FormState.h" | 65 #include "core/loader/FormState.h" |
| 67 #include "core/loader/FrameLoadRequest.h" | 66 #include "core/loader/FrameLoadRequest.h" |
| 67 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 68 #include "core/platform/HostWindow.h" | 68 #include "core/platform/HostWindow.h" |
| 69 #include "core/platform/PlatformGestureEvent.h" | 69 #include "core/platform/PlatformGestureEvent.h" |
| 70 #include "core/platform/ScrollAnimator.h" | 70 #include "core/platform/ScrollAnimator.h" |
| 71 #include "core/platform/ScrollView.h" | 71 #include "core/platform/ScrollView.h" |
| 72 #include "core/platform/ScrollbarTheme.h" | 72 #include "core/platform/ScrollbarTheme.h" |
| 73 #include "core/platform/chromium/KeyboardCodes.h" | 73 #include "core/platform/chromium/KeyboardCodes.h" |
| 74 #include "core/platform/graphics/GraphicsContext.h" | 74 #include "core/platform/graphics/GraphicsContext.h" |
| 75 #include "core/platform/graphics/chromium/GraphicsLayerChromium.h" | 75 #include "core/platform/graphics/chromium/GraphicsLayerChromium.h" |
| 76 #include "core/rendering/HitTestResult.h" | 76 #include "core/rendering/HitTestResult.h" |
| 77 #include "core/rendering/RenderBox.h" | 77 #include "core/rendering/RenderBox.h" |
| (...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 850 // Take our element and get the clip rect from the enclosing layer and | 850 // Take our element and get the clip rect from the enclosing layer and |
| 851 // frame view. | 851 // frame view. |
| 852 clipRect.intersect( | 852 clipRect.intersect( |
| 853 m_element->document()->view()->windowClipRectForFrameOwner(m_element
, true)); | 853 m_element->document()->view()->windowClipRectForFrameOwner(m_element
, true)); |
| 854 } | 854 } |
| 855 | 855 |
| 856 return clipRect; | 856 return clipRect; |
| 857 } | 857 } |
| 858 | 858 |
| 859 } // namespace WebKit | 859 } // namespace WebKit |
| OLD | NEW |