| 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 29 matching lines...) Expand all Loading... |
| 40 #include "WebPlugin.h" | 40 #include "WebPlugin.h" |
| 41 #include "WebViewClient.h" | 41 #include "WebViewClient.h" |
| 42 #include "WebViewImpl.h" | 42 #include "WebViewImpl.h" |
| 43 #include "core/page/Chrome.h" | 43 #include "core/page/Chrome.h" |
| 44 #include "core/page/EventHandler.h" | 44 #include "core/page/EventHandler.h" |
| 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/dom/Clipboard.h" | 50 #include "core/clipboard/Clipboard.h" |
| 51 #include "core/dom/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" | 55 #include "core/events/ThreadLocalEventNames.h" |
| 56 #include "core/events/TouchEvent.h" | 56 #include "core/events/TouchEvent.h" |
| 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" |
| (...skipping 833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 895 // Take our element and get the clip rect from the enclosing layer and | 895 // Take our element and get the clip rect from the enclosing layer and |
| 896 // frame view. | 896 // frame view. |
| 897 clipRect.intersect( | 897 clipRect.intersect( |
| 898 m_element->document().view()->windowClipRectForFrameOwner(m_element,
true)); | 898 m_element->document().view()->windowClipRectForFrameOwner(m_element,
true)); |
| 899 } | 899 } |
| 900 | 900 |
| 901 return clipRect; | 901 return clipRect; |
| 902 } | 902 } |
| 903 | 903 |
| 904 } // namespace blink | 904 } // namespace blink |
| OLD | NEW |