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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 virtual PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider() o
verride; | 163 virtual PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider() o
verride; |
164 virtual bool isControlledByServiceWorker(DocumentLoader&) override; | 164 virtual bool isControlledByServiceWorker(DocumentLoader&) override; |
165 virtual SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() overrid
e; | 165 virtual SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() overrid
e; |
166 | 166 |
167 virtual PassOwnPtr<WebApplicationCacheHost> createApplicationCacheHost(WebAp
plicationCacheHostClient*) override; | 167 virtual PassOwnPtr<WebApplicationCacheHost> createApplicationCacheHost(WebAp
plicationCacheHostClient*) override; |
168 | 168 |
169 virtual void didStopAllLoaders() override; | 169 virtual void didStopAllLoaders() override; |
170 | 170 |
171 virtual void dispatchDidChangeManifest() override; | 171 virtual void dispatchDidChangeManifest() override; |
172 | 172 |
| 173 virtual unsigned backForwardLength() override; |
| 174 |
173 private: | 175 private: |
174 virtual bool isFrameLoaderClientImpl() const override { return true; } | 176 virtual bool isFrameLoaderClientImpl() const override { return true; } |
175 | 177 |
176 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(DocumentLoader*); | 178 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(DocumentLoader*); |
177 | 179 |
178 // The WebFrame that owns this object and manages its lifetime. Therefore, | 180 // The WebFrame that owns this object and manages its lifetime. Therefore, |
179 // the web frame object is guaranteed to exist. | 181 // the web frame object is guaranteed to exist. |
180 WebLocalFrameImpl* m_webFrame; | 182 WebLocalFrameImpl* m_webFrame; |
181 }; | 183 }; |
182 | 184 |
183 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); | 185 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); |
184 | 186 |
185 } // namespace blink | 187 } // namespace blink |
186 | 188 |
187 #endif | 189 #endif |
OLD | NEW |