| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 #include "core/html/HTMLPlugInElement.h" | 52 #include "core/html/HTMLPlugInElement.h" |
| 53 #include "core/input/EventHandler.h" | 53 #include "core/input/EventHandler.h" |
| 54 #include "core/inspector/DevToolsEmulator.h" | 54 #include "core/inspector/DevToolsEmulator.h" |
| 55 #include "core/layout/HitTestResult.h" | 55 #include "core/layout/HitTestResult.h" |
| 56 #include "core/loader/DocumentLoader.h" | 56 #include "core/loader/DocumentLoader.h" |
| 57 #include "core/loader/FrameLoadRequest.h" | 57 #include "core/loader/FrameLoadRequest.h" |
| 58 #include "core/loader/FrameLoader.h" | 58 #include "core/loader/FrameLoader.h" |
| 59 #include "core/loader/HistoryItem.h" | 59 #include "core/loader/HistoryItem.h" |
| 60 #include "core/origin_trials/OriginTrials.h" | 60 #include "core/origin_trials/OriginTrials.h" |
| 61 #include "core/page/Page.h" | 61 #include "core/page/Page.h" |
| 62 #include "core/page/WindowFeatures.h" | |
| 63 #include "modules/audio_output_devices/HTMLMediaElementAudioOutputDevice.h" | 62 #include "modules/audio_output_devices/HTMLMediaElementAudioOutputDevice.h" |
| 64 #include "modules/device_orientation/DeviceMotionController.h" | 63 #include "modules/device_orientation/DeviceMotionController.h" |
| 65 #include "modules/device_orientation/DeviceOrientationAbsoluteController.h" | 64 #include "modules/device_orientation/DeviceOrientationAbsoluteController.h" |
| 66 #include "modules/device_orientation/DeviceOrientationController.h" | 65 #include "modules/device_orientation/DeviceOrientationController.h" |
| 67 #include "modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h" | 66 #include "modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h" |
| 68 #include "modules/gamepad/NavigatorGamepad.h" | 67 #include "modules/gamepad/NavigatorGamepad.h" |
| 69 #include "modules/presentation/PresentationReceiver.h" | 68 #include "modules/presentation/PresentationReceiver.h" |
| 70 #include "modules/remoteplayback/HTMLMediaElementRemotePlayback.h" | 69 #include "modules/remoteplayback/HTMLMediaElementRemotePlayback.h" |
| 71 #include "modules/remoteplayback/RemotePlayback.h" | 70 #include "modules/remoteplayback/RemotePlayback.h" |
| 72 #include "modules/serviceworkers/NavigatorServiceWorker.h" | 71 #include "modules/serviceworkers/NavigatorServiceWorker.h" |
| (...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1040 | 1039 |
| 1041 TextCheckerClient& LocalFrameClientImpl::GetTextCheckerClient() const { | 1040 TextCheckerClient& LocalFrameClientImpl::GetTextCheckerClient() const { |
| 1042 return web_frame_->GetTextCheckerClient(); | 1041 return web_frame_->GetTextCheckerClient(); |
| 1043 } | 1042 } |
| 1044 | 1043 |
| 1045 std::unique_ptr<blink::WebURLLoader> LocalFrameClientImpl::CreateURLLoader() { | 1044 std::unique_ptr<blink::WebURLLoader> LocalFrameClientImpl::CreateURLLoader() { |
| 1046 return web_frame_->CreateURLLoader(); | 1045 return web_frame_->CreateURLLoader(); |
| 1047 } | 1046 } |
| 1048 | 1047 |
| 1049 } // namespace blink | 1048 } // namespace blink |
| OLD | NEW |