| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 enum class WebTreeScopeType; | 69 enum class WebTreeScopeType; |
| 70 class InterfaceProvider; | 70 class InterfaceProvider; |
| 71 class InterfaceRegistry; | 71 class InterfaceRegistry; |
| 72 class WebApplicationCacheHost; | 72 class WebApplicationCacheHost; |
| 73 class WebApplicationCacheHostClient; | 73 class WebApplicationCacheHostClient; |
| 74 class WebBluetooth; | 74 class WebBluetooth; |
| 75 class WebColorChooser; | 75 class WebColorChooser; |
| 76 class WebColorChooserClient; | 76 class WebColorChooserClient; |
| 77 class WebContentDecryptionModule; | 77 class WebContentDecryptionModule; |
| 78 class WebCookieJar; | 78 class WebCookieJar; |
| 79 class WebCString; | |
| 80 class WebDataSource; | 79 class WebDataSource; |
| 81 class WebEncryptedMediaClient; | 80 class WebEncryptedMediaClient; |
| 82 class WebExternalPopupMenu; | 81 class WebExternalPopupMenu; |
| 83 class WebExternalPopupMenuClient; | 82 class WebExternalPopupMenuClient; |
| 84 class WebFileChooserCompletion; | 83 class WebFileChooserCompletion; |
| 85 class WebInstalledAppClient; | 84 class WebInstalledAppClient; |
| 86 class WebLocalFrame; | 85 class WebLocalFrame; |
| 87 class WebMediaPlayer; | 86 class WebMediaPlayer; |
| 88 class WebMediaPlayerClient; | 87 class WebMediaPlayerClient; |
| 89 class WebMediaPlayerEncryptedMediaClient; | 88 class WebMediaPlayerEncryptedMediaClient; |
| 90 class WebMediaPlayerSource; | 89 class WebMediaPlayerSource; |
| 91 class WebMediaSession; | 90 class WebMediaSession; |
| 92 class WebMediaStream; | |
| 93 class WebServiceWorkerProvider; | 91 class WebServiceWorkerProvider; |
| 94 class WebPlugin; | 92 class WebPlugin; |
| 95 class WebPresentationClient; | 93 class WebPresentationClient; |
| 96 class WebPushClient; | 94 class WebPushClient; |
| 97 class WebRTCPeerConnectionHandler; | 95 class WebRTCPeerConnectionHandler; |
| 98 class WebScreenOrientationClient; | 96 class WebScreenOrientationClient; |
| 99 class WebString; | 97 class WebString; |
| 100 class WebURL; | 98 class WebURL; |
| 101 class WebURLResponse; | 99 class WebURLResponse; |
| 102 class WebUserMediaClient; | 100 class WebUserMediaClient; |
| (...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 758 // Overwrites the given URL to use an HTML5 embed if possible. | 756 // Overwrites the given URL to use an HTML5 embed if possible. |
| 759 // An empty URL is returned if the URL is not overriden. | 757 // An empty URL is returned if the URL is not overriden. |
| 760 virtual WebURL overrideFlashEmbedWithHTML(const WebURL& url) { | 758 virtual WebURL overrideFlashEmbedWithHTML(const WebURL& url) { |
| 761 return WebURL(); | 759 return WebURL(); |
| 762 } | 760 } |
| 763 }; | 761 }; |
| 764 | 762 |
| 765 } // namespace blink | 763 } // namespace blink |
| 766 | 764 |
| 767 #endif | 765 #endif |
| OLD | NEW |