| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org> | 2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org> |
| 3 * Copyright (C) 2008, 2009, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2008, 2009, 2012 Apple Inc. All rights reserved. |
| 4 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 return String(); | 126 return String(); |
| 127 } | 127 } |
| 128 | 128 |
| 129 std::unique_ptr<WebFrameScheduler> EmptyChromeClient::CreateFrameScheduler( | 129 std::unique_ptr<WebFrameScheduler> EmptyChromeClient::CreateFrameScheduler( |
| 130 BlameContext*) { | 130 BlameContext*) { |
| 131 return WTF::MakeUnique<EmptyFrameScheduler>(); | 131 return WTF::MakeUnique<EmptyFrameScheduler>(); |
| 132 } | 132 } |
| 133 | 133 |
| 134 NavigationPolicy EmptyLocalFrameClient::DecidePolicyForNavigation( | 134 NavigationPolicy EmptyLocalFrameClient::DecidePolicyForNavigation( |
| 135 const ResourceRequest&, | 135 const ResourceRequest&, |
| 136 Document* origin_document, |
| 136 DocumentLoader*, | 137 DocumentLoader*, |
| 137 NavigationType, | 138 NavigationType, |
| 138 NavigationPolicy, | 139 NavigationPolicy, |
| 139 bool, | 140 bool, |
| 140 bool, | 141 bool, |
| 141 HTMLFormElement*, | 142 HTMLFormElement*, |
| 142 ContentSecurityPolicyDisposition) { | 143 ContentSecurityPolicyDisposition) { |
| 143 return kNavigationPolicyIgnore; | 144 return kNavigationPolicyIgnore; |
| 144 } | 145 } |
| 145 | 146 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 | 207 |
| 207 std::unique_ptr<WebApplicationCacheHost> | 208 std::unique_ptr<WebApplicationCacheHost> |
| 208 EmptyLocalFrameClient::CreateApplicationCacheHost( | 209 EmptyLocalFrameClient::CreateApplicationCacheHost( |
| 209 WebApplicationCacheHostClient*) { | 210 WebApplicationCacheHostClient*) { |
| 210 return nullptr; | 211 return nullptr; |
| 211 } | 212 } |
| 212 | 213 |
| 213 EmptyRemoteFrameClient::EmptyRemoteFrameClient() = default; | 214 EmptyRemoteFrameClient::EmptyRemoteFrameClient() = default; |
| 214 | 215 |
| 215 } // namespace blink | 216 } // namespace blink |
| OLD | NEW |