| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2014 Opera Software ASA. All rights reserved. | 3 * Copyright (C) 2014 Opera Software ASA. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "core/events/GestureEvent.h" | 42 #include "core/events/GestureEvent.h" |
| 43 #include "core/events/KeyboardEvent.h" | 43 #include "core/events/KeyboardEvent.h" |
| 44 #include "core/events/MouseEvent.h" | 44 #include "core/events/MouseEvent.h" |
| 45 #include "core/events/TouchEvent.h" | 45 #include "core/events/TouchEvent.h" |
| 46 #include "core/events/WheelEvent.h" | 46 #include "core/events/WheelEvent.h" |
| 47 #include "core/frame/EventHandlerRegistry.h" | 47 #include "core/frame/EventHandlerRegistry.h" |
| 48 #include "core/frame/FrameView.h" | 48 #include "core/frame/FrameView.h" |
| 49 #include "core/frame/LocalFrame.h" | 49 #include "core/frame/LocalFrame.h" |
| 50 #include "core/html/HTMLFormElement.h" | 50 #include "core/html/HTMLFormElement.h" |
| 51 #include "core/html/HTMLPlugInElement.h" | 51 #include "core/html/HTMLPlugInElement.h" |
| 52 #include "core/input/EventHandler.h" |
| 52 #include "core/layout/HitTestResult.h" | 53 #include "core/layout/HitTestResult.h" |
| 53 #include "core/layout/LayoutBox.h" | 54 #include "core/layout/LayoutBox.h" |
| 54 #include "core/layout/LayoutPart.h" | 55 #include "core/layout/LayoutPart.h" |
| 55 #include "core/loader/FrameLoadRequest.h" | 56 #include "core/loader/FrameLoadRequest.h" |
| 56 #include "core/page/EventHandler.h" | |
| 57 #include "core/page/FocusController.h" | 57 #include "core/page/FocusController.h" |
| 58 #include "core/page/Page.h" | 58 #include "core/page/Page.h" |
| 59 #include "core/page/scrolling/ScrollingCoordinator.h" | 59 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 60 #include "core/paint/DeprecatedPaintLayer.h" | 60 #include "core/paint/DeprecatedPaintLayer.h" |
| 61 #include "core/paint/LayoutObjectDrawingRecorder.h" | 61 #include "core/paint/LayoutObjectDrawingRecorder.h" |
| 62 #include "modules/plugins/PluginOcclusionSupport.h" | 62 #include "modules/plugins/PluginOcclusionSupport.h" |
| 63 #include "platform/HostWindow.h" | 63 #include "platform/HostWindow.h" |
| 64 #include "platform/KeyboardCodes.h" | 64 #include "platform/KeyboardCodes.h" |
| 65 #include "platform/PlatformGestureEvent.h" | 65 #include "platform/PlatformGestureEvent.h" |
| 66 #include "platform/UserGestureIndicator.h" | 66 #include "platform/UserGestureIndicator.h" |
| (...skipping 899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 966 for (size_t i = 0; i < cutOutRects.size(); i++) | 966 for (size_t i = 0; i < cutOutRects.size(); i++) |
| 967 cutOutRects[i].move(-frameRect().x(), -frameRect().y()); | 967 cutOutRects[i].move(-frameRect().x(), -frameRect().y()); |
| 968 } | 968 } |
| 969 | 969 |
| 970 bool WebPluginContainerImpl::pluginShouldPersist() const | 970 bool WebPluginContainerImpl::pluginShouldPersist() const |
| 971 { | 971 { |
| 972 return m_webPlugin->shouldPersist(); | 972 return m_webPlugin->shouldPersist(); |
| 973 } | 973 } |
| 974 | 974 |
| 975 } // namespace blink | 975 } // namespace blink |
| OLD | NEW |