| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 | 192 |
| 193 void dispatchWillStartUsingPeerConnectionHandler( | 193 void dispatchWillStartUsingPeerConnectionHandler( |
| 194 WebRTCPeerConnectionHandler*) override; | 194 WebRTCPeerConnectionHandler*) override; |
| 195 | 195 |
| 196 bool allowWebGL(bool enabledPerSettings) override; | 196 bool allowWebGL(bool enabledPerSettings) override; |
| 197 | 197 |
| 198 void dispatchWillInsertBody() override; | 198 void dispatchWillInsertBody() override; |
| 199 | 199 |
| 200 std::unique_ptr<WebServiceWorkerProvider> createServiceWorkerProvider() | 200 std::unique_ptr<WebServiceWorkerProvider> createServiceWorkerProvider() |
| 201 override; | 201 override; |
| 202 bool isControlledByServiceWorker(DocumentLoader&) override; | |
| 203 int64_t serviceWorkerID(DocumentLoader&) override; | |
| 204 SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() override; | 202 SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() override; |
| 205 | 203 |
| 206 std::unique_ptr<WebApplicationCacheHost> createApplicationCacheHost( | 204 std::unique_ptr<WebApplicationCacheHost> createApplicationCacheHost( |
| 207 WebApplicationCacheHostClient*) override; | 205 WebApplicationCacheHostClient*) override; |
| 208 | 206 |
| 209 void dispatchDidChangeManifest() override; | 207 void dispatchDidChangeManifest() override; |
| 210 | 208 |
| 211 unsigned backForwardLength() override; | 209 unsigned backForwardLength() override; |
| 212 | 210 |
| 213 void suddenTerminationDisablerChanged(bool present, | 211 void suddenTerminationDisablerChanged(bool present, |
| (...skipping 24 matching lines...) Expand all Loading... |
| 238 | 236 |
| 239 DEFINE_TYPE_CASTS(LocalFrameClientImpl, | 237 DEFINE_TYPE_CASTS(LocalFrameClientImpl, |
| 240 LocalFrameClient, | 238 LocalFrameClient, |
| 241 client, | 239 client, |
| 242 client->isLocalFrameClientImpl(), | 240 client->isLocalFrameClientImpl(), |
| 243 client.isLocalFrameClientImpl()); | 241 client.isLocalFrameClientImpl()); |
| 244 | 242 |
| 245 } // namespace blink | 243 } // namespace blink |
| 246 | 244 |
| 247 #endif | 245 #endif |
| OLD | NEW |