| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 #include "platform/exported/WrappedResourceResponse.h" | 45 #include "platform/exported/WrappedResourceResponse.h" |
| 46 | 46 |
| 47 #include "HTMLNames.h" | 47 #include "HTMLNames.h" |
| 48 #include "WebPrintParams.h" | 48 #include "WebPrintParams.h" |
| 49 #include "bindings/v8/ScriptController.h" | 49 #include "bindings/v8/ScriptController.h" |
| 50 #include "core/clipboard/Clipboard.h" | 50 #include "core/clipboard/Clipboard.h" |
| 51 #include "core/clipboard/DataObject.h" | 51 #include "core/clipboard/DataObject.h" |
| 52 #include "core/events/GestureEvent.h" | 52 #include "core/events/GestureEvent.h" |
| 53 #include "core/events/KeyboardEvent.h" | 53 #include "core/events/KeyboardEvent.h" |
| 54 #include "core/events/MouseEvent.h" | 54 #include "core/events/MouseEvent.h" |
| 55 #include "core/events/ThreadLocalEventNames.h" | |
| 56 #include "core/events/TouchEvent.h" | 55 #include "core/events/TouchEvent.h" |
| 57 #include "core/events/WheelEvent.h" | 56 #include "core/events/WheelEvent.h" |
| 58 #include "core/html/HTMLFormElement.h" | 57 #include "core/html/HTMLFormElement.h" |
| 59 #include "core/html/HTMLPlugInElement.h" | 58 #include "core/html/HTMLPlugInElement.h" |
| 60 #include "core/loader/FormState.h" | 59 #include "core/loader/FormState.h" |
| 61 #include "core/loader/FrameLoadRequest.h" | 60 #include "core/loader/FrameLoadRequest.h" |
| 62 #include "core/page/FocusController.h" | 61 #include "core/page/FocusController.h" |
| 63 #include "core/frame/FrameView.h" | 62 #include "core/frame/FrameView.h" |
| 64 #include "core/frame/LocalFrame.h" | 63 #include "core/frame/LocalFrame.h" |
| 65 #include "core/page/Page.h" | 64 #include "core/page/Page.h" |
| (...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 921 // Take our element and get the clip rect from the enclosing layer and | 920 // Take our element and get the clip rect from the enclosing layer and |
| 922 // frame view. | 921 // frame view. |
| 923 clipRect.intersect( | 922 clipRect.intersect( |
| 924 m_element->document().view()->windowClipRectForFrameOwner(m_element)
); | 923 m_element->document().view()->windowClipRectForFrameOwner(m_element)
); |
| 925 } | 924 } |
| 926 | 925 |
| 927 return clipRect; | 926 return clipRect; |
| 928 } | 927 } |
| 929 | 928 |
| 930 } // namespace blink | 929 } // namespace blink |
| OLD | NEW |