| 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/html/HTMLFormElement.h" | 57 #include "core/html/HTMLFormElement.h" |
| 58 #include "core/html/HTMLPlugInElement.h" | 58 #include "core/html/HTMLPlugInElement.h" |
| 59 #include "core/loader/FormState.h" | 59 #include "core/loader/FormState.h" |
| 60 #include "core/loader/FrameLoadRequest.h" | 60 #include "core/loader/FrameLoadRequest.h" |
| 61 #include "core/page/FocusController.h" | 61 #include "core/page/FocusController.h" |
| 62 #include "core/frame/Frame.h" | 62 #include "core/frame/Frame.h" |
| 63 #include "core/frame/FrameView.h" | 63 #include "core/frame/FrameView.h" |
| 64 #include "core/page/Page.h" | 64 #include "core/page/Page.h" |
| 65 #include "core/page/scrolling/ScrollingCoordinator.h" | 65 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 66 #include "core/platform/chromium/ChromiumDataObject.h" | 66 #include "core/platform/chromium/ChromiumDataObject.h" |
| 67 #include "core/platform/chromium/KeyboardCodes.h" | |
| 68 #include "core/plugins/PluginOcclusionSupport.h" | 67 #include "core/plugins/PluginOcclusionSupport.h" |
| 69 #include "core/rendering/HitTestResult.h" | 68 #include "core/rendering/HitTestResult.h" |
| 70 #include "core/rendering/RenderBox.h" | 69 #include "core/rendering/RenderBox.h" |
| 71 #include "platform/HostWindow.h" | 70 #include "platform/HostWindow.h" |
| 71 #include "platform/KeyboardCodes.h" |
| 72 #include "platform/PlatformGestureEvent.h" | 72 #include "platform/PlatformGestureEvent.h" |
| 73 #include "platform/UserGestureIndicator.h" | 73 #include "platform/UserGestureIndicator.h" |
| 74 #include "platform/graphics/GraphicsContext.h" | 74 #include "platform/graphics/GraphicsContext.h" |
| 75 #include "platform/graphics/GraphicsLayer.h" | 75 #include "platform/graphics/GraphicsLayer.h" |
| 76 #include "platform/scroll/ScrollAnimator.h" | 76 #include "platform/scroll/ScrollAnimator.h" |
| 77 #include "platform/scroll/ScrollView.h" | 77 #include "platform/scroll/ScrollView.h" |
| 78 #include "platform/scroll/ScrollbarTheme.h" | 78 #include "platform/scroll/ScrollbarTheme.h" |
| 79 #include "public/platform/Platform.h" | 79 #include "public/platform/Platform.h" |
| 80 #include "public/platform/WebClipboard.h" | 80 #include "public/platform/WebClipboard.h" |
| 81 #include "public/platform/WebCompositorSupport.h" | 81 #include "public/platform/WebCompositorSupport.h" |
| (...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 896 // Take our element and get the clip rect from the enclosing layer and | 896 // Take our element and get the clip rect from the enclosing layer and |
| 897 // frame view. | 897 // frame view. |
| 898 clipRect.intersect( | 898 clipRect.intersect( |
| 899 m_element->document().view()->windowClipRectForFrameOwner(m_element,
true)); | 899 m_element->document().view()->windowClipRectForFrameOwner(m_element,
true)); |
| 900 } | 900 } |
| 901 | 901 |
| 902 return clipRect; | 902 return clipRect; |
| 903 } | 903 } |
| 904 | 904 |
| 905 } // namespace blink | 905 } // namespace blink |
| OLD | NEW |