| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 class WebPresentationClient; | 90 class WebPresentationClient; |
| 91 class WebPushClient; | 91 class WebPushClient; |
| 92 class WebRTCPeerConnectionHandler; | 92 class WebRTCPeerConnectionHandler; |
| 93 class WebScreenOrientationClient; | 93 class WebScreenOrientationClient; |
| 94 class WebString; | 94 class WebString; |
| 95 class WebURL; | 95 class WebURL; |
| 96 class WebURLResponse; | 96 class WebURLResponse; |
| 97 class WebUSBClient; | 97 class WebUSBClient; |
| 98 class WebUserMediaClient; | 98 class WebUserMediaClient; |
| 99 class WebVRClient; | 99 class WebVRClient; |
| 100 class WebWakeLockClient; | |
| 101 class WebWorkerContentSettingsClientProxy; | 100 class WebWorkerContentSettingsClientProxy; |
| 102 struct WebColorSuggestion; | 101 struct WebColorSuggestion; |
| 103 struct WebConsoleMessage; | 102 struct WebConsoleMessage; |
| 104 struct WebContextMenuData; | 103 struct WebContextMenuData; |
| 105 struct WebPluginParams; | 104 struct WebPluginParams; |
| 106 struct WebPopupMenuInfo; | 105 struct WebPopupMenuInfo; |
| 107 struct WebRect; | 106 struct WebRect; |
| 108 struct WebURLError; | 107 struct WebURLError; |
| 109 | 108 |
| 110 class WebFrameClient { | 109 class WebFrameClient { |
| (...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 virtual void requestStorageQuota( | 554 virtual void requestStorageQuota( |
| 556 WebStorageQuotaType, | 555 WebStorageQuotaType, |
| 557 unsigned long long newQuotaInBytes, | 556 unsigned long long newQuotaInBytes, |
| 558 WebStorageQuotaCallbacks) { } | 557 WebStorageQuotaCallbacks) { } |
| 559 | 558 |
| 560 // WebSocket ----------------------------------------------------- | 559 // WebSocket ----------------------------------------------------- |
| 561 | 560 |
| 562 // A WebSocket object is going to open a new WebSocket connection. | 561 // A WebSocket object is going to open a new WebSocket connection. |
| 563 virtual void willOpenWebSocket(WebSocketHandle*) { } | 562 virtual void willOpenWebSocket(WebSocketHandle*) { } |
| 564 | 563 |
| 565 // Wake Lock ----------------------------------------------------- | |
| 566 | |
| 567 virtual WebWakeLockClient* wakeLockClient() { return 0; } | |
| 568 | |
| 569 // Geolocation --------------------------------------------------------- | 564 // Geolocation --------------------------------------------------------- |
| 570 | 565 |
| 571 // Access the embedder API for (client-based) geolocation client . | 566 // Access the embedder API for (client-based) geolocation client . |
| 572 virtual WebGeolocationClient* geolocationClient() { return 0; } | 567 virtual WebGeolocationClient* geolocationClient() { return 0; } |
| 573 | 568 |
| 574 | 569 |
| 575 // MediaStream ----------------------------------------------------- | 570 // MediaStream ----------------------------------------------------- |
| 576 | 571 |
| 577 // A new WebRTCPeerConnectionHandler is created. | 572 // A new WebRTCPeerConnectionHandler is created. |
| 578 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler
*) { } | 573 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler
*) { } |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 733 // Mojo ---------------------------------------------------------------- | 728 // Mojo ---------------------------------------------------------------- |
| 734 virtual ServiceRegistry* serviceRegistry() { return nullptr; } | 729 virtual ServiceRegistry* serviceRegistry() { return nullptr; } |
| 735 | 730 |
| 736 protected: | 731 protected: |
| 737 virtual ~WebFrameClient() { } | 732 virtual ~WebFrameClient() { } |
| 738 }; | 733 }; |
| 739 | 734 |
| 740 } // namespace blink | 735 } // namespace blink |
| 741 | 736 |
| 742 #endif | 737 #endif |
| OLD | NEW |