| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. |
| 3 * Copyright (C) 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2012 Google 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 | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 | 218 |
| 219 // If an HTML document is being loaded, informs the embedder that the do
cument will have its <body> attached soon. | 219 // If an HTML document is being loaded, informs the embedder that the do
cument will have its <body> attached soon. |
| 220 virtual void dispatchWillInsertBody() { } | 220 virtual void dispatchWillInsertBody() { } |
| 221 | 221 |
| 222 virtual void dispatchDidChangeResourcePriority(unsigned long /*identifie
r*/, ResourceLoadPriority) { } | 222 virtual void dispatchDidChangeResourcePriority(unsigned long /*identifie
r*/, ResourceLoadPriority) { } |
| 223 | 223 |
| 224 virtual PassOwnPtr<blink::WebServiceWorkerProvider> createServiceWorkerP
rovider(PassOwnPtr<blink::WebServiceWorkerProviderClient>) = 0; | 224 virtual PassOwnPtr<blink::WebServiceWorkerProvider> createServiceWorkerP
rovider(PassOwnPtr<blink::WebServiceWorkerProviderClient>) = 0; |
| 225 | 225 |
| 226 virtual SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() { r
eturn 0; } | 226 virtual SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() { r
eturn 0; } |
| 227 | 227 |
| 228 virtual void didStopAllLoaders() { } | 228 virtual void didStopActiveLoader() { } |
| 229 | 229 |
| 230 virtual bool isFrameLoaderClientImpl() const { return false; } | 230 virtual bool isFrameLoaderClientImpl() const { return false; } |
| 231 }; | 231 }; |
| 232 | 232 |
| 233 } // namespace WebCore | 233 } // namespace WebCore |
| 234 | 234 |
| 235 #endif // FrameLoaderClient_h | 235 #endif // FrameLoaderClient_h |
| OLD | NEW |