| 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 virtual void didLoseWebGLContext(int) { } | 214 virtual void didLoseWebGLContext(int) { } |
| 215 | 215 |
| 216 // If an HTML document is being loaded, informs the embedder that the do
cument will have its <body> attached soon. | 216 // If an HTML document is being loaded, informs the embedder that the do
cument will have its <body> attached soon. |
| 217 virtual void dispatchWillInsertBody() { } | 217 virtual void dispatchWillInsertBody() { } |
| 218 | 218 |
| 219 virtual void dispatchDidChangeResourcePriority(unsigned long /*identifie
r*/, ResourceLoadPriority) { } | 219 virtual void dispatchDidChangeResourcePriority(unsigned long /*identifie
r*/, ResourceLoadPriority) { } |
| 220 | 220 |
| 221 virtual WebKit::WebServiceWorkerRegistry* serviceWorkerRegistry() = 0; | 221 virtual WebKit::WebServiceWorkerRegistry* serviceWorkerRegistry() = 0; |
| 222 | 222 |
| 223 virtual void didStopAllLoaders() { } | 223 virtual void didStopAllLoaders() { } |
| 224 |
| 225 virtual bool isFrameLoaderClientImpl() const { return false; } |
| 224 }; | 226 }; |
| 225 | 227 |
| 226 } // namespace WebCore | 228 } // namespace WebCore |
| 227 | 229 |
| 228 #endif // FrameLoaderClient_h | 230 #endif // FrameLoaderClient_h |
| OLD | NEW |