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