| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 return String(); | 131 return String(); |
| 132 } | 132 } |
| 133 | 133 |
| 134 std::unique_ptr<WebFrameScheduler> EmptyChromeClient::CreateFrameScheduler( | 134 std::unique_ptr<WebFrameScheduler> EmptyChromeClient::CreateFrameScheduler( |
| 135 BlameContext*) { | 135 BlameContext*) { |
| 136 return WTF::MakeUnique<EmptyFrameScheduler>(); | 136 return WTF::MakeUnique<EmptyFrameScheduler>(); |
| 137 } | 137 } |
| 138 | 138 |
| 139 NavigationPolicy EmptyLocalFrameClient::DecidePolicyForNavigation( | 139 NavigationPolicy EmptyLocalFrameClient::DecidePolicyForNavigation( |
| 140 const ResourceRequest&, | 140 const ResourceRequest&, |
| 141 Document* origin_document, |
| 141 DocumentLoader*, | 142 DocumentLoader*, |
| 142 NavigationType, | 143 NavigationType, |
| 143 NavigationPolicy, | 144 NavigationPolicy, |
| 144 bool, | 145 bool, |
| 145 bool, | 146 bool, |
| 146 HTMLFormElement*, | 147 HTMLFormElement*, |
| 147 ContentSecurityPolicyDisposition) { | 148 ContentSecurityPolicyDisposition) { |
| 148 return kNavigationPolicyIgnore; | 149 return kNavigationPolicyIgnore; |
| 149 } | 150 } |
| 150 | 151 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 | 212 |
| 212 std::unique_ptr<WebApplicationCacheHost> | 213 std::unique_ptr<WebApplicationCacheHost> |
| 213 EmptyLocalFrameClient::CreateApplicationCacheHost( | 214 EmptyLocalFrameClient::CreateApplicationCacheHost( |
| 214 WebApplicationCacheHostClient*) { | 215 WebApplicationCacheHostClient*) { |
| 215 return nullptr; | 216 return nullptr; |
| 216 } | 217 } |
| 217 | 218 |
| 218 EmptyRemoteFrameClient::EmptyRemoteFrameClient() = default; | 219 EmptyRemoteFrameClient::EmptyRemoteFrameClient() = default; |
| 219 | 220 |
| 220 } // namespace blink | 221 } // namespace blink |
| OLD | NEW |