| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() override; | 173 SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() override; |
| 174 | 174 |
| 175 PassOwnPtr<WebApplicationCacheHost> createApplicationCacheHost(WebApplicatio
nCacheHostClient*) override; | 175 PassOwnPtr<WebApplicationCacheHost> createApplicationCacheHost(WebApplicatio
nCacheHostClient*) override; |
| 176 | 176 |
| 177 void dispatchDidChangeManifest() override; | 177 void dispatchDidChangeManifest() override; |
| 178 | 178 |
| 179 unsigned backForwardLength() override; | 179 unsigned backForwardLength() override; |
| 180 | 180 |
| 181 void suddenTerminationDisablerChanged(bool present, SuddenTerminationDisable
rType) override; | 181 void suddenTerminationDisablerChanged(bool present, SuddenTerminationDisable
rType) override; |
| 182 | 182 |
| 183 PassOwnPtrWillBeRawPtr<LinkResource> createServiceWorkerLinkResource(HTMLLin
kElement*) override; |
| 184 |
| 183 private: | 185 private: |
| 184 explicit FrameLoaderClientImpl(WebLocalFrameImpl*); | 186 explicit FrameLoaderClientImpl(WebLocalFrameImpl*); |
| 185 | 187 |
| 186 bool isFrameLoaderClientImpl() const override { return true; } | 188 bool isFrameLoaderClientImpl() const override { return true; } |
| 187 | 189 |
| 188 // The WebFrame that owns this object and manages its lifetime. Therefore, | 190 // The WebFrame that owns this object and manages its lifetime. Therefore, |
| 189 // the web frame object is guaranteed to exist. | 191 // the web frame object is guaranteed to exist. |
| 190 RawPtrWillBeMember<WebLocalFrameImpl> m_webFrame; | 192 RawPtrWillBeMember<WebLocalFrameImpl> m_webFrame; |
| 191 }; | 193 }; |
| 192 | 194 |
| 193 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); | 195 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); |
| 194 | 196 |
| 195 } // namespace blink | 197 } // namespace blink |
| 196 | 198 |
| 197 #endif | 199 #endif |
| OLD | NEW |