| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 WebNotificationPermissionCallback; | 92 class WebNotificationPermissionCallback; |
| 93 class WebServiceWorkerProvider; | 93 class WebServiceWorkerProvider; |
| 94 class WebSocketHandle; | |
| 95 class WebPlugin; | 94 class WebPlugin; |
| 96 class WebPresentationClient; | 95 class WebPresentationClient; |
| 97 class WebPushClient; | 96 class WebPushClient; |
| 98 class WebRTCPeerConnectionHandler; | 97 class WebRTCPeerConnectionHandler; |
| 99 class WebScreenOrientationClient; | 98 class WebScreenOrientationClient; |
| 100 class WebString; | 99 class WebString; |
| 101 class WebURL; | 100 class WebURL; |
| 102 class WebURLResponse; | 101 class WebURLResponse; |
| 103 class WebUserMediaClient; | 102 class WebUserMediaClient; |
| 104 class WebWorkerContentSettingsClientProxy; | 103 class WebWorkerContentSettingsClientProxy; |
| (...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 // WebStorageQuotaCallbacks::didGrantStorageQuota will be called when | 543 // WebStorageQuotaCallbacks::didGrantStorageQuota will be called when |
| 545 // a new quota is granted. WebStorageQuotaCallbacks::didFail | 544 // a new quota is granted. WebStorageQuotaCallbacks::didFail |
| 546 // is called with an error code otherwise. | 545 // is called with an error code otherwise. |
| 547 // Note that the requesting quota size may not always be granted and | 546 // Note that the requesting quota size may not always be granted and |
| 548 // a smaller amount of quota than requested might be returned. | 547 // a smaller amount of quota than requested might be returned. |
| 549 virtual void requestStorageQuota( | 548 virtual void requestStorageQuota( |
| 550 WebStorageQuotaType, | 549 WebStorageQuotaType, |
| 551 unsigned long long newQuotaInBytes, | 550 unsigned long long newQuotaInBytes, |
| 552 WebStorageQuotaCallbacks) { } | 551 WebStorageQuotaCallbacks) { } |
| 553 | 552 |
| 554 // WebSocket ----------------------------------------------------- | |
| 555 | |
| 556 // A WebSocket object is going to open a new WebSocket connection. | |
| 557 virtual void willOpenWebSocket(WebSocketHandle*) { } | |
| 558 | |
| 559 // MediaStream ----------------------------------------------------- | 553 // MediaStream ----------------------------------------------------- |
| 560 | 554 |
| 561 // A new WebRTCPeerConnectionHandler is created. | 555 // A new WebRTCPeerConnectionHandler is created. |
| 562 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler
*) { } | 556 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler
*) { } |
| 563 | 557 |
| 564 virtual WebUserMediaClient* userMediaClient() { return 0; } | 558 virtual WebUserMediaClient* userMediaClient() { return 0; } |
| 565 | 559 |
| 566 | 560 |
| 567 // Encrypted Media ------------------------------------------------- | 561 // Encrypted Media ------------------------------------------------- |
| 568 | 562 |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 698 return WebURL(); | 692 return WebURL(); |
| 699 } | 693 } |
| 700 | 694 |
| 701 protected: | 695 protected: |
| 702 virtual ~WebFrameClient() { } | 696 virtual ~WebFrameClient() { } |
| 703 }; | 697 }; |
| 704 | 698 |
| 705 } // namespace blink | 699 } // namespace blink |
| 706 | 700 |
| 707 #endif | 701 #endif |
| OLD | NEW |