| 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 28 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 typedef class _jobject* jobject; | 40 typedef class _jobject* jobject; |
| 41 | 41 |
| 42 namespace v8 { | 42 namespace v8 { |
| 43 class Context; | 43 class Context; |
| 44 template<class T> class Handle; | 44 template<class T> class Handle; |
| 45 } | 45 } |
| 46 | 46 |
| 47 namespace WebKit { | 47 namespace WebKit { |
| 48 class WebCookieJar; | 48 class WebCookieJar; |
| 49 class WebServiceWorkerRegistry; | 49 class WebServiceWorkerProvider; |
| 50 class WebServiceWorkerProviderClient; |
| 50 } | 51 } |
| 51 | 52 |
| 52 namespace WebCore { | 53 namespace WebCore { |
| 53 | 54 |
| 54 class Color; | 55 class Color; |
| 55 class DOMWindowExtension; | 56 class DOMWindowExtension; |
| 56 class DOMWrapperWorld; | 57 class DOMWrapperWorld; |
| 57 class DocumentLoader; | 58 class DocumentLoader; |
| 58 class Element; | 59 class Element; |
| 59 class FetchRequest; | 60 class FetchRequest; |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 virtual bool allowWebGL(bool enabledPerSettings) { return enabledPerSett
ings; } | 212 virtual bool allowWebGL(bool enabledPerSettings) { return enabledPerSett
ings; } |
| 212 // Informs the embedder that a WebGL canvas inside this frame received a
lost context | 213 // Informs the embedder that a WebGL canvas inside this frame received a
lost context |
| 213 // notification with the given GL_ARB_robustness guilt/innocence code (s
ee Extensions3D.h). | 214 // notification with the given GL_ARB_robustness guilt/innocence code (s
ee Extensions3D.h). |
| 214 virtual void didLoseWebGLContext(int) { } | 215 virtual void didLoseWebGLContext(int) { } |
| 215 | 216 |
| 216 // If an HTML document is being loaded, informs the embedder that the do
cument will have its <body> attached soon. | 217 // If an HTML document is being loaded, informs the embedder that the do
cument will have its <body> attached soon. |
| 217 virtual void dispatchWillInsertBody() { } | 218 virtual void dispatchWillInsertBody() { } |
| 218 | 219 |
| 219 virtual void dispatchDidChangeResourcePriority(unsigned long /*identifie
r*/, ResourceLoadPriority) { } | 220 virtual void dispatchDidChangeResourcePriority(unsigned long /*identifie
r*/, ResourceLoadPriority) { } |
| 220 | 221 |
| 221 virtual WebKit::WebServiceWorkerRegistry* serviceWorkerRegistry() = 0; | 222 virtual WebKit::WebServiceWorkerProvider* createServiceWorkerProvider(We
bKit::WebServiceWorkerProviderClient*) = 0; |
| 222 | 223 |
| 223 virtual void didStopAllLoaders() { } | 224 virtual void didStopAllLoaders() { } |
| 224 }; | 225 }; |
| 225 | 226 |
| 226 } // namespace WebCore | 227 } // namespace WebCore |
| 227 | 228 |
| 228 #endif // FrameLoaderClient_h | 229 #endif // FrameLoaderClient_h |
| OLD | NEW |