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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 class WebContentDecryptionModule; | 64 class WebContentDecryptionModule; |
65 class WebCookieJar; | 65 class WebCookieJar; |
66 class WebDataSource; | 66 class WebDataSource; |
67 class WebEncryptedMediaClient; | 67 class WebEncryptedMediaClient; |
68 class WebExternalPopupMenu; | 68 class WebExternalPopupMenu; |
69 class WebExternalPopupMenuClient; | 69 class WebExternalPopupMenuClient; |
70 class WebFormElement; | 70 class WebFormElement; |
71 class WebGeolocationClient; | 71 class WebGeolocationClient; |
72 class WebMediaPlayer; | 72 class WebMediaPlayer; |
73 class WebMediaPlayerClient; | 73 class WebMediaPlayerClient; |
| 74 class WebMediaPlayerEncryptedMediaClient; |
74 class WebMIDIClient; | 75 class WebMIDIClient; |
75 class WebNotificationPermissionCallback; | 76 class WebNotificationPermissionCallback; |
76 class WebPermissionClient; | 77 class WebPermissionClient; |
77 class WebServiceWorkerProvider; | 78 class WebServiceWorkerProvider; |
78 class WebSocketHandle; | 79 class WebSocketHandle; |
79 class WebPlugin; | 80 class WebPlugin; |
80 class WebPluginPlaceholder; | 81 class WebPluginPlaceholder; |
81 class WebPresentationClient; | 82 class WebPresentationClient; |
82 class WebPushClient; | 83 class WebPushClient; |
83 class WebRTCPeerConnectionHandler; | 84 class WebRTCPeerConnectionHandler; |
(...skipping 18 matching lines...) Expand all Loading... |
102 // Factory methods ----------------------------------------------------- | 103 // Factory methods ----------------------------------------------------- |
103 | 104 |
104 // May return null. | 105 // May return null. |
105 virtual WebPluginPlaceholder* createPluginPlaceholder(WebLocalFrame*, const
WebPluginParams&) { return 0; } | 106 virtual WebPluginPlaceholder* createPluginPlaceholder(WebLocalFrame*, const
WebPluginParams&) { return 0; } |
106 | 107 |
107 // May return null. | 108 // May return null. |
108 virtual WebPlugin* createPlugin(WebLocalFrame*, const WebPluginParams&) { re
turn 0; } | 109 virtual WebPlugin* createPlugin(WebLocalFrame*, const WebPluginParams&) { re
turn 0; } |
109 | 110 |
110 // May return null. | 111 // May return null. |
111 // WebContentDecryptionModule* may be null if one has not yet been set. | 112 // WebContentDecryptionModule* may be null if one has not yet been set. |
112 virtual WebMediaPlayer* createMediaPlayer(WebLocalFrame*, const WebURL&, Web
MediaPlayerClient*, WebContentDecryptionModule*) { return 0; } | 113 virtual WebMediaPlayer* createMediaPlayer(WebLocalFrame*, const WebURL&, Web
MediaPlayerClient*, WebMediaPlayerEncryptedMediaClient*, WebContentDecryptionMod
ule*) { return 0; } |
113 | 114 |
114 // May return null. | 115 // May return null. |
115 virtual WebApplicationCacheHost* createApplicationCacheHost(WebLocalFrame*,
WebApplicationCacheHostClient*) { return 0; } | 116 virtual WebApplicationCacheHost* createApplicationCacheHost(WebLocalFrame*,
WebApplicationCacheHostClient*) { return 0; } |
116 | 117 |
117 // May return null. | 118 // May return null. |
118 virtual WebServiceWorkerProvider* createServiceWorkerProvider(WebLocalFrame*
frame) { return 0; } | 119 virtual WebServiceWorkerProvider* createServiceWorkerProvider(WebLocalFrame*
frame) { return 0; } |
119 | 120 |
120 // May return null. | 121 // May return null. |
121 virtual WebWorkerContentSettingsClientProxy* createWorkerContentSettingsClie
ntProxy(WebLocalFrame* frame) { return 0; } | 122 virtual WebWorkerContentSettingsClientProxy* createWorkerContentSettingsClie
ntProxy(WebLocalFrame* frame) { return 0; } |
122 | 123 |
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
652 // App Banners --------------------------------------------------------- | 653 // App Banners --------------------------------------------------------- |
653 virtual WebAppBannerClient* appBannerClient() { return 0; } | 654 virtual WebAppBannerClient* appBannerClient() { return 0; } |
654 | 655 |
655 protected: | 656 protected: |
656 virtual ~WebFrameClient() { } | 657 virtual ~WebFrameClient() { } |
657 }; | 658 }; |
658 | 659 |
659 } // namespace blink | 660 } // namespace blink |
660 | 661 |
661 #endif | 662 #endif |
OLD | NEW |