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