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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 #include "WebViewClient.h" | 42 #include "WebViewClient.h" |
43 #include "WebViewImpl.h" | 43 #include "WebViewImpl.h" |
44 #include "core/page/Chrome.h" | 44 #include "core/page/Chrome.h" |
45 #include "core/page/EventHandler.h" | 45 #include "core/page/EventHandler.h" |
46 #include "core/platform/chromium/ClipboardChromium.h" | 46 #include "core/platform/chromium/ClipboardChromium.h" |
47 #include "core/platform/chromium/support/WrappedResourceResponse.h" | 47 #include "core/platform/chromium/support/WrappedResourceResponse.h" |
48 | 48 |
49 #include "HTMLNames.h" | 49 #include "HTMLNames.h" |
50 #include "WebPrintParams.h" | 50 #include "WebPrintParams.h" |
51 #include "bindings/v8/ScriptController.h" | 51 #include "bindings/v8/ScriptController.h" |
52 #include "core/events/EventNames.h" | 52 #include "core/dom/EventNames.h" |
53 #include "core/events/GestureEvent.h" | 53 #include "core/dom/GestureEvent.h" |
54 #include "core/events/KeyboardEvent.h" | 54 #include "core/dom/KeyboardEvent.h" |
55 #include "core/events/MouseEvent.h" | 55 #include "core/dom/MouseEvent.h" |
56 #include "core/dom/TouchController.h" | 56 #include "core/dom/TouchController.h" |
57 #include "core/events/TouchEvent.h" | 57 #include "core/dom/TouchEvent.h" |
58 #include "core/dom/UserGestureIndicator.h" | 58 #include "core/dom/UserGestureIndicator.h" |
59 #include "core/events/WheelEvent.h" | 59 #include "core/dom/WheelEvent.h" |
60 #include "core/html/HTMLFormElement.h" | 60 #include "core/html/HTMLFormElement.h" |
61 #include "core/html/HTMLPlugInElement.h" | 61 #include "core/html/HTMLPlugInElement.h" |
62 #include "core/loader/FormState.h" | 62 #include "core/loader/FormState.h" |
63 #include "core/loader/FrameLoadRequest.h" | 63 #include "core/loader/FrameLoadRequest.h" |
64 #include "core/page/FocusController.h" | 64 #include "core/page/FocusController.h" |
65 #include "core/page/Frame.h" | 65 #include "core/page/Frame.h" |
66 #include "core/page/FrameView.h" | 66 #include "core/page/FrameView.h" |
67 #include "core/page/Page.h" | 67 #include "core/page/Page.h" |
68 #include "core/page/scrolling/ScrollingCoordinator.h" | 68 #include "core/page/scrolling/ScrollingCoordinator.h" |
69 #include "core/platform/HostWindow.h" | 69 #include "core/platform/HostWindow.h" |
(...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
892 // Take our element and get the clip rect from the enclosing layer and | 892 // Take our element and get the clip rect from the enclosing layer and |
893 // frame view. | 893 // frame view. |
894 clipRect.intersect( | 894 clipRect.intersect( |
895 m_element->document().view()->windowClipRectForFrameOwner(m_element,
true)); | 895 m_element->document().view()->windowClipRectForFrameOwner(m_element,
true)); |
896 } | 896 } |
897 | 897 |
898 return clipRect; | 898 return clipRect; |
899 } | 899 } |
900 | 900 |
901 } // namespace WebKit | 901 } // namespace WebKit |
OLD | NEW |