| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 class WebSocketHandle; | 91 class WebSocketHandle; |
| 92 class WebPlugin; | 92 class WebPlugin; |
| 93 class WebPresentationClient; | 93 class WebPresentationClient; |
| 94 class WebPushClient; | 94 class WebPushClient; |
| 95 class WebRTCPeerConnectionHandler; | 95 class WebRTCPeerConnectionHandler; |
| 96 class WebScreenOrientationClient; | 96 class WebScreenOrientationClient; |
| 97 class WebString; | 97 class WebString; |
| 98 class WebURL; | 98 class WebURL; |
| 99 class WebURLResponse; | 99 class WebURLResponse; |
| 100 class WebUserMediaClient; | 100 class WebUserMediaClient; |
| 101 class WebVRClient; | |
| 102 class WebWorkerContentSettingsClientProxy; | 101 class WebWorkerContentSettingsClientProxy; |
| 103 struct WebColorSuggestion; | 102 struct WebColorSuggestion; |
| 104 struct WebConsoleMessage; | 103 struct WebConsoleMessage; |
| 105 struct WebContextMenuData; | 104 struct WebContextMenuData; |
| 106 struct WebPluginParams; | 105 struct WebPluginParams; |
| 107 struct WebPopupMenuInfo; | 106 struct WebPopupMenuInfo; |
| 108 struct WebRect; | 107 struct WebRect; |
| 109 struct WebURLError; | 108 struct WebURLError; |
| 110 | 109 |
| 111 class WebFrameClient { | 110 class WebFrameClient { |
| (...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 670 UnloadHandler, | 669 UnloadHandler, |
| 671 }; | 670 }; |
| 672 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio
nDisablerType) { } | 671 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio
nDisablerType) { } |
| 673 | 672 |
| 674 | 673 |
| 675 // Permissions --------------------------------------------------------- | 674 // Permissions --------------------------------------------------------- |
| 676 | 675 |
| 677 // Access the embedder API for permission client. | 676 // Access the embedder API for permission client. |
| 678 virtual WebPermissionClient* permissionClient() { return 0; } | 677 virtual WebPermissionClient* permissionClient() { return 0; } |
| 679 | 678 |
| 680 // Virtual Reality ----------------------------------------------------- | |
| 681 | |
| 682 // Access the embedder API for virtual reality client. | |
| 683 virtual WebVRClient* webVRClient() { return 0; } | |
| 684 | |
| 685 // App Banners --------------------------------------------------------- | 679 // App Banners --------------------------------------------------------- |
| 686 virtual WebAppBannerClient* appBannerClient() { return 0; } | 680 virtual WebAppBannerClient* appBannerClient() { return 0; } |
| 687 | 681 |
| 688 // Navigator Content Utils -------------------------------------------- | 682 // Navigator Content Utils -------------------------------------------- |
| 689 | 683 |
| 690 // Registers a new URL handler for the given protocol. | 684 // Registers a new URL handler for the given protocol. |
| 691 virtual void registerProtocolHandler(const WebString& scheme, | 685 virtual void registerProtocolHandler(const WebString& scheme, |
| 692 const WebURL& url, | 686 const WebURL& url, |
| 693 const WebString& title) { } | 687 const WebString& title) { } |
| 694 | 688 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 720 // Mojo ---------------------------------------------------------------- | 714 // Mojo ---------------------------------------------------------------- |
| 721 virtual ServiceRegistry* serviceRegistry() { return nullptr; } | 715 virtual ServiceRegistry* serviceRegistry() { return nullptr; } |
| 722 | 716 |
| 723 protected: | 717 protected: |
| 724 virtual ~WebFrameClient() { } | 718 virtual ~WebFrameClient() { } |
| 725 }; | 719 }; |
| 726 | 720 |
| 727 } // namespace blink | 721 } // namespace blink |
| 728 | 722 |
| 729 #endif | 723 #endif |
| OLD | NEW |