| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 class WebApplicationCacheHost; | 51 class WebApplicationCacheHost; |
| 52 class WebApplicationCacheHostClient; | 52 class WebApplicationCacheHostClient; |
| 53 class WebCachedURLRequest; | 53 class WebCachedURLRequest; |
| 54 class WebCookieJar; | 54 class WebCookieJar; |
| 55 class WebDataSource; | 55 class WebDataSource; |
| 56 class WebDOMEvent; | 56 class WebDOMEvent; |
| 57 class WebFormElement; | 57 class WebFormElement; |
| 58 class WebFrame; | 58 class WebFrame; |
| 59 class WebMediaPlayer; | 59 class WebMediaPlayer; |
| 60 class WebMediaPlayerClient; | 60 class WebMediaPlayerClient; |
| 61 class WebServiceWorkerRegistry; | 61 class WebServiceWorkerProvider; |
| 62 class WebServiceWorkerProviderClient; |
| 62 class WebNode; | 63 class WebNode; |
| 63 class WebPlugin; | 64 class WebPlugin; |
| 64 class WebRTCPeerConnectionHandler; | 65 class WebRTCPeerConnectionHandler; |
| 65 class WebSharedWorker; | 66 class WebSharedWorker; |
| 66 class WebSharedWorkerClient; | 67 class WebSharedWorkerClient; |
| 67 class WebSocketStreamHandle; | 68 class WebSocketStreamHandle; |
| 68 class WebStorageQuotaCallbacks; | 69 class WebStorageQuotaCallbacks; |
| 69 class WebString; | 70 class WebString; |
| 70 class WebURL; | 71 class WebURL; |
| 71 class WebURLLoader; | 72 class WebURLLoader; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 85 | 86 |
| 86 // May return null. | 87 // May return null. |
| 87 virtual WebSharedWorker* createSharedWorker(WebFrame*, const WebURL&, const
WebString&, unsigned long long) { return 0; } | 88 virtual WebSharedWorker* createSharedWorker(WebFrame*, const WebURL&, const
WebString&, unsigned long long) { return 0; } |
| 88 | 89 |
| 89 // May return null. | 90 // May return null. |
| 90 virtual WebMediaPlayer* createMediaPlayer(WebFrame*, const WebURL&, WebMedia
PlayerClient*) { return 0; } | 91 virtual WebMediaPlayer* createMediaPlayer(WebFrame*, const WebURL&, WebMedia
PlayerClient*) { return 0; } |
| 91 | 92 |
| 92 // May return null. | 93 // May return null. |
| 93 virtual WebApplicationCacheHost* createApplicationCacheHost(WebFrame*, WebAp
plicationCacheHostClient*) { return 0; } | 94 virtual WebApplicationCacheHost* createApplicationCacheHost(WebFrame*, WebAp
plicationCacheHostClient*) { return 0; } |
| 94 | 95 |
| 95 virtual WebServiceWorkerRegistry* serviceWorkerRegistry(WebFrame*) { return
0; } | 96 // May return null. |
| 97 virtual WebServiceWorkerProvider* createServiceWorkerProvider(WebFrame*, Web
ServiceWorkerProviderClient*) { return 0; } |
| 96 | 98 |
| 97 | 99 |
| 98 // Services ------------------------------------------------------------ | 100 // Services ------------------------------------------------------------ |
| 99 | 101 |
| 100 // A frame specific cookie jar. May return null, in which case | 102 // A frame specific cookie jar. May return null, in which case |
| 101 // WebKitPlatformSupport::cookieJar() will be called to access cookies. | 103 // WebKitPlatformSupport::cookieJar() will be called to access cookies. |
| 102 virtual WebCookieJar* cookieJar(WebFrame*) { return 0; } | 104 virtual WebCookieJar* cookieJar(WebFrame*) { return 0; } |
| 103 | 105 |
| 104 | 106 |
| 105 // General notifications ----------------------------------------------- | 107 // General notifications ----------------------------------------------- |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 // Extensions3D.h in WebCore/platform/graphics). | 373 // Extensions3D.h in WebCore/platform/graphics). |
| 372 virtual void didLoseWebGLContext(WebFrame*, int) { } | 374 virtual void didLoseWebGLContext(WebFrame*, int) { } |
| 373 | 375 |
| 374 protected: | 376 protected: |
| 375 ~WebFrameClient() { } | 377 ~WebFrameClient() { } |
| 376 }; | 378 }; |
| 377 | 379 |
| 378 } // namespace WebKit | 380 } // namespace WebKit |
| 379 | 381 |
| 380 #endif | 382 #endif |
| OLD | NEW |