| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 class WebFileChooserCompletion; | 83 class WebFileChooserCompletion; |
| 84 class WebFormElement; | 84 class WebFormElement; |
| 85 class WebInstalledAppClient; | 85 class WebInstalledAppClient; |
| 86 class WebMediaPlayer; | 86 class WebMediaPlayer; |
| 87 class WebMediaPlayerClient; | 87 class WebMediaPlayerClient; |
| 88 class WebMediaPlayerEncryptedMediaClient; | 88 class WebMediaPlayerEncryptedMediaClient; |
| 89 class WebMediaPlayerSource; | 89 class WebMediaPlayerSource; |
| 90 class WebMediaSession; | 90 class WebMediaSession; |
| 91 class WebMediaStream; | 91 class WebMediaStream; |
| 92 class WebServiceWorkerProvider; | 92 class WebServiceWorkerProvider; |
| 93 class WebSocketHandle; | |
| 94 class WebPlugin; | 93 class WebPlugin; |
| 95 class WebPresentationClient; | 94 class WebPresentationClient; |
| 96 class WebPushClient; | 95 class WebPushClient; |
| 97 class WebRTCPeerConnectionHandler; | 96 class WebRTCPeerConnectionHandler; |
| 98 class WebScreenOrientationClient; | 97 class WebScreenOrientationClient; |
| 99 class WebString; | 98 class WebString; |
| 100 class WebURL; | 99 class WebURL; |
| 101 class WebURLResponse; | 100 class WebURLResponse; |
| 102 class WebUserMediaClient; | 101 class WebUserMediaClient; |
| 103 class WebWorkerContentSettingsClientProxy; | 102 class WebWorkerContentSettingsClientProxy; |
| (...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 // WebStorageQuotaCallbacks::didGrantStorageQuota will be called when | 537 // WebStorageQuotaCallbacks::didGrantStorageQuota will be called when |
| 539 // a new quota is granted. WebStorageQuotaCallbacks::didFail | 538 // a new quota is granted. WebStorageQuotaCallbacks::didFail |
| 540 // is called with an error code otherwise. | 539 // is called with an error code otherwise. |
| 541 // Note that the requesting quota size may not always be granted and | 540 // Note that the requesting quota size may not always be granted and |
| 542 // a smaller amount of quota than requested might be returned. | 541 // a smaller amount of quota than requested might be returned. |
| 543 virtual void requestStorageQuota( | 542 virtual void requestStorageQuota( |
| 544 WebStorageQuotaType, | 543 WebStorageQuotaType, |
| 545 unsigned long long newQuotaInBytes, | 544 unsigned long long newQuotaInBytes, |
| 546 WebStorageQuotaCallbacks) { } | 545 WebStorageQuotaCallbacks) { } |
| 547 | 546 |
| 548 // WebSocket ----------------------------------------------------- | |
| 549 | |
| 550 // A WebSocket object is going to open a new WebSocket connection. | |
| 551 virtual void willOpenWebSocket(WebSocketHandle*) { } | |
| 552 | |
| 553 // MediaStream ----------------------------------------------------- | 547 // MediaStream ----------------------------------------------------- |
| 554 | 548 |
| 555 // A new WebRTCPeerConnectionHandler is created. | 549 // A new WebRTCPeerConnectionHandler is created. |
| 556 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler
*) { } | 550 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler
*) { } |
| 557 | 551 |
| 558 virtual WebUserMediaClient* userMediaClient() { return 0; } | 552 virtual WebUserMediaClient* userMediaClient() { return 0; } |
| 559 | 553 |
| 560 | 554 |
| 561 // Encrypted Media ------------------------------------------------- | 555 // Encrypted Media ------------------------------------------------- |
| 562 | 556 |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 692 return WebURL(); | 686 return WebURL(); |
| 693 } | 687 } |
| 694 | 688 |
| 695 protected: | 689 protected: |
| 696 virtual ~WebFrameClient() { } | 690 virtual ~WebFrameClient() { } |
| 697 }; | 691 }; |
| 698 | 692 |
| 699 } // namespace blink | 693 } // namespace blink |
| 700 | 694 |
| 701 #endif | 695 #endif |
| OLD | NEW |