| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 WebUSBClient; | 100 class WebUSBClient; |
| 101 class WebUserMediaClient; | 101 class WebUserMediaClient; |
| 102 class WebVRClient; | 102 class WebVRClient; |
| 103 class WebWakeLockClient; | |
| 104 class WebWorkerContentSettingsClientProxy; | 103 class WebWorkerContentSettingsClientProxy; |
| 105 struct WebColorSuggestion; | 104 struct WebColorSuggestion; |
| 106 struct WebConsoleMessage; | 105 struct WebConsoleMessage; |
| 107 struct WebContextMenuData; | 106 struct WebContextMenuData; |
| 108 struct WebPluginParams; | 107 struct WebPluginParams; |
| 109 struct WebPopupMenuInfo; | 108 struct WebPopupMenuInfo; |
| 110 struct WebRect; | 109 struct WebRect; |
| 111 struct WebURLError; | 110 struct WebURLError; |
| 112 | 111 |
| 113 class WebFrameClient { | 112 class WebFrameClient { |
| (...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 562 virtual void requestStorageQuota( | 561 virtual void requestStorageQuota( |
| 563 WebStorageQuotaType, | 562 WebStorageQuotaType, |
| 564 unsigned long long newQuotaInBytes, | 563 unsigned long long newQuotaInBytes, |
| 565 WebStorageQuotaCallbacks) { } | 564 WebStorageQuotaCallbacks) { } |
| 566 | 565 |
| 567 // WebSocket ----------------------------------------------------- | 566 // WebSocket ----------------------------------------------------- |
| 568 | 567 |
| 569 // A WebSocket object is going to open a new WebSocket connection. | 568 // A WebSocket object is going to open a new WebSocket connection. |
| 570 virtual void willOpenWebSocket(WebSocketHandle*) { } | 569 virtual void willOpenWebSocket(WebSocketHandle*) { } |
| 571 | 570 |
| 572 // Wake Lock ----------------------------------------------------- | |
| 573 | |
| 574 virtual WebWakeLockClient* wakeLockClient() { return 0; } | |
| 575 | |
| 576 // Geolocation --------------------------------------------------------- | 571 // Geolocation --------------------------------------------------------- |
| 577 | 572 |
| 578 // Access the embedder API for (client-based) geolocation client . | 573 // Access the embedder API for (client-based) geolocation client . |
| 579 virtual WebGeolocationClient* geolocationClient() { return 0; } | 574 virtual WebGeolocationClient* geolocationClient() { return 0; } |
| 580 | 575 |
| 581 | 576 |
| 582 // MediaStream ----------------------------------------------------- | 577 // MediaStream ----------------------------------------------------- |
| 583 | 578 |
| 584 // A new WebRTCPeerConnectionHandler is created. | 579 // A new WebRTCPeerConnectionHandler is created. |
| 585 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler
*) { } | 580 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler
*) { } |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 734 // Mojo ---------------------------------------------------------------- | 729 // Mojo ---------------------------------------------------------------- |
| 735 virtual ServiceRegistry* serviceRegistry() { return nullptr; } | 730 virtual ServiceRegistry* serviceRegistry() { return nullptr; } |
| 736 | 731 |
| 737 protected: | 732 protected: |
| 738 virtual ~WebFrameClient() { } | 733 virtual ~WebFrameClient() { } |
| 739 }; | 734 }; |
| 740 | 735 |
| 741 } // namespace blink | 736 } // namespace blink |
| 742 | 737 |
| 743 #endif | 738 #endif |
| OLD | NEW |