| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple Inc. 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 24 matching lines...) Expand all Loading... |
| 35 #include "bindings/core/v8/ScriptController.h" | 35 #include "bindings/core/v8/ScriptController.h" |
| 36 #include "core/HTMLNames.h" | 36 #include "core/HTMLNames.h" |
| 37 #include "core/dom/Document.h" | 37 #include "core/dom/Document.h" |
| 38 #include "core/dom/Fullscreen.h" | 38 #include "core/dom/Fullscreen.h" |
| 39 #include "core/events/MessageEvent.h" | 39 #include "core/events/MessageEvent.h" |
| 40 #include "core/events/MouseEvent.h" | 40 #include "core/events/MouseEvent.h" |
| 41 #include "core/events/UIEventWithKeyState.h" | 41 #include "core/events/UIEventWithKeyState.h" |
| 42 #include "core/frame/FrameView.h" | 42 #include "core/frame/FrameView.h" |
| 43 #include "core/frame/Settings.h" | 43 #include "core/frame/Settings.h" |
| 44 #include "core/html/HTMLAppletElement.h" | 44 #include "core/html/HTMLAppletElement.h" |
| 45 #include "core/input/EventHandler.h" |
| 45 #include "core/layout/HitTestResult.h" | 46 #include "core/layout/HitTestResult.h" |
| 46 #include "core/loader/DocumentLoader.h" | 47 #include "core/loader/DocumentLoader.h" |
| 47 #include "core/loader/FrameLoadRequest.h" | 48 #include "core/loader/FrameLoadRequest.h" |
| 48 #include "core/loader/FrameLoader.h" | 49 #include "core/loader/FrameLoader.h" |
| 49 #include "core/loader/HistoryItem.h" | 50 #include "core/loader/HistoryItem.h" |
| 50 #include "core/page/EventHandler.h" | |
| 51 #include "core/page/Page.h" | 51 #include "core/page/Page.h" |
| 52 #include "core/page/WindowFeatures.h" | 52 #include "core/page/WindowFeatures.h" |
| 53 #include "modules/device_light/DeviceLightController.h" | 53 #include "modules/device_light/DeviceLightController.h" |
| 54 #include "modules/device_orientation/DeviceMotionController.h" | 54 #include "modules/device_orientation/DeviceMotionController.h" |
| 55 #include "modules/device_orientation/DeviceOrientationController.h" | 55 #include "modules/device_orientation/DeviceOrientationController.h" |
| 56 #include "modules/gamepad/NavigatorGamepad.h" | 56 #include "modules/gamepad/NavigatorGamepad.h" |
| 57 #include "modules/serviceworkers/NavigatorServiceWorker.h" | 57 #include "modules/serviceworkers/NavigatorServiceWorker.h" |
| 58 #include "modules/storage/DOMWindowStorageController.h" | 58 #include "modules/storage/DOMWindowStorageController.h" |
| 59 #include "modules/vr/NavigatorVRDevice.h" | 59 #include "modules/vr/NavigatorVRDevice.h" |
| 60 #include "platform/MIMETypeRegistry.h" | 60 #include "platform/MIMETypeRegistry.h" |
| (...skipping 893 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 954 | 954 |
| 955 void FrameLoaderClientImpl::suddenTerminationDisablerChanged(bool present, Sudde
nTerminationDisablerType type) | 955 void FrameLoaderClientImpl::suddenTerminationDisablerChanged(bool present, Sudde
nTerminationDisablerType type) |
| 956 { | 956 { |
| 957 if (m_webFrame->client()) { | 957 if (m_webFrame->client()) { |
| 958 m_webFrame->client()->suddenTerminationDisablerChanged( | 958 m_webFrame->client()->suddenTerminationDisablerChanged( |
| 959 present, static_cast<WebFrameClient::SuddenTerminationDisablerType>(
type)); | 959 present, static_cast<WebFrameClient::SuddenTerminationDisablerType>(
type)); |
| 960 } | 960 } |
| 961 } | 961 } |
| 962 | 962 |
| 963 } // namespace blink | 963 } // namespace blink |
| OLD | NEW |