| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 virtual void didRequestAutocomplete(HTMLFormElement*) = 0; | 211 virtual void didRequestAutocomplete(HTMLFormElement*) = 0; |
| 212 | 212 |
| 213 virtual bool allowWebGL(bool enabledPerSettings) { return enabledPerSett
ings; } | 213 virtual bool allowWebGL(bool enabledPerSettings) { return enabledPerSett
ings; } |
| 214 // Informs the embedder that a WebGL canvas inside this frame received a
lost context | 214 // Informs the embedder that a WebGL canvas inside this frame received a
lost context |
| 215 // notification with the given GL_ARB_robustness guilt/innocence code (s
ee Extensions3D.h). | 215 // notification with the given GL_ARB_robustness guilt/innocence code (s
ee Extensions3D.h). |
| 216 virtual void didLoseWebGLContext(int) { } | 216 virtual void didLoseWebGLContext(int) { } |
| 217 | 217 |
| 218 // If an HTML document is being loaded, informs the embedder that the do
cument will have its <body> attached soon. | 218 // If an HTML document is being loaded, informs the embedder that the do
cument will have its <body> attached soon. |
| 219 virtual void dispatchWillInsertBody() { } | 219 virtual void dispatchWillInsertBody() { } |
| 220 | 220 |
| 221 virtual void dispatchDidChangeResourcePriority(unsigned long /*identifie
r*/, ResourceLoadPriority) { } | 221 virtual void dispatchDidChangeResourcePriority(unsigned long identifier,
ResourceLoadPriority, int intraPriorityValue) { } |
| 222 | 222 |
| 223 virtual PassOwnPtr<blink::WebServiceWorkerProvider> createServiceWorkerP
rovider() = 0; | 223 virtual PassOwnPtr<blink::WebServiceWorkerProvider> createServiceWorkerP
rovider() = 0; |
| 224 | 224 |
| 225 virtual SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() { r
eturn 0; } | 225 virtual SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() { r
eturn 0; } |
| 226 | 226 |
| 227 virtual PassOwnPtr<blink::WebApplicationCacheHost> createApplicationCach
eHost(blink::WebApplicationCacheHostClient*) = 0; | 227 virtual PassOwnPtr<blink::WebApplicationCacheHost> createApplicationCach
eHost(blink::WebApplicationCacheHostClient*) = 0; |
| 228 | 228 |
| 229 virtual void didStopAllLoaders() { } | 229 virtual void didStopAllLoaders() { } |
| 230 | 230 |
| 231 virtual bool isFrameLoaderClientImpl() const { return false; } | 231 virtual bool isFrameLoaderClientImpl() const { return false; } |
| 232 }; | 232 }; |
| 233 | 233 |
| 234 } // namespace WebCore | 234 } // namespace WebCore |
| 235 | 235 |
| 236 #endif // FrameLoaderClient_h | 236 #endif // FrameLoaderClient_h |
| OLD | NEW |