| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/frame/Frame.h" | 63 #include "core/frame/Frame.h" |
| 64 #include "core/frame/FrameView.h" | 64 #include "core/frame/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/ScrollAnimator.h" | 67 #include "core/platform/ScrollAnimator.h" |
| 68 #include "core/platform/ScrollView.h" | 68 #include "core/platform/ScrollView.h" |
| 69 #include "core/platform/ScrollbarTheme.h" | 69 #include "core/platform/ScrollbarTheme.h" |
| 70 #include "core/platform/chromium/ChromiumDataObject.h" | 70 #include "core/platform/chromium/ChromiumDataObject.h" |
| 71 #include "core/platform/chromium/KeyboardCodes.h" | |
| 72 #include "core/platform/graphics/GraphicsContext.h" | 71 #include "core/platform/graphics/GraphicsContext.h" |
| 73 #include "core/platform/graphics/GraphicsLayer.h" | 72 #include "core/platform/graphics/GraphicsLayer.h" |
| 74 #include "core/plugins/PluginOcclusionSupport.h" | 73 #include "core/plugins/PluginOcclusionSupport.h" |
| 75 #include "core/rendering/HitTestResult.h" | 74 #include "core/rendering/HitTestResult.h" |
| 76 #include "core/rendering/RenderBox.h" | 75 #include "core/rendering/RenderBox.h" |
| 77 #include "platform/HostWindow.h" | 76 #include "platform/HostWindow.h" |
| 77 #include "platform/KeyboardCodes.h" |
| 78 #include "platform/PlatformGestureEvent.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" |
| (...skipping 803 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 |