Chromium Code Reviews| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 62 class WebCookieJar; | 62 class WebCookieJar; |
| 63 class WebDataSource; | 63 class WebDataSource; |
| 64 class WebDOMEvent; | 64 class WebDOMEvent; |
| 65 class WebFormElement; | 65 class WebFormElement; |
| 66 class WebInputEvent; | 66 class WebInputEvent; |
| 67 class WebMediaPlayer; | 67 class WebMediaPlayer; |
| 68 class WebMediaPlayerClient; | 68 class WebMediaPlayerClient; |
| 69 class WebNotificationPresenter; | 69 class WebNotificationPresenter; |
| 70 class WebServiceWorkerProvider; | 70 class WebServiceWorkerProvider; |
| 71 class WebServiceWorkerProviderClient; | 71 class WebServiceWorkerProviderClient; |
| 72 class WebSocketHandle; | |
| 72 class WebNode; | 73 class WebNode; |
| 73 class WebPlugin; | 74 class WebPlugin; |
| 74 class WebRTCPeerConnectionHandler; | 75 class WebRTCPeerConnectionHandler; |
| 75 class WebSharedWorker; | 76 class WebSharedWorker; |
| 76 class WebSharedWorkerClient; | 77 class WebSharedWorkerClient; |
| 77 class WebSocketStreamHandle; | 78 class WebSocketStreamHandle; |
| 78 class WebString; | 79 class WebString; |
| 79 class WebURL; | 80 class WebURL; |
| 80 class WebURLLoader; | 81 class WebURLLoader; |
| 81 class WebURLResponse; | 82 class WebURLResponse; |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 435 virtual void requestStorageQuota( | 436 virtual void requestStorageQuota( |
| 436 WebLocalFrame*, WebStorageQuotaType, | 437 WebLocalFrame*, WebStorageQuotaType, |
| 437 unsigned long long newQuotaInBytes, | 438 unsigned long long newQuotaInBytes, |
| 438 WebStorageQuotaCallbacks) { } | 439 WebStorageQuotaCallbacks) { } |
| 439 | 440 |
| 440 // WebSocket ----------------------------------------------------- | 441 // WebSocket ----------------------------------------------------- |
| 441 | 442 |
| 442 // A WebSocket object is going to open new stream connection. | 443 // A WebSocket object is going to open new stream connection. |
| 443 virtual void willOpenSocketStream(WebSocketStreamHandle*) { } | 444 virtual void willOpenSocketStream(WebSocketStreamHandle*) { } |
| 444 | 445 |
| 446 // A WebSocket object is going to open new stream connection. | |
|
yhirano
2014/05/29 07:19:18
Is this comment right?
tyoshino (SeeGerritForStatus)
2014/05/29 07:29:09
Refined
| |
| 447 virtual void willOpenWebSocket(WebSocketHandle*) { } | |
| 448 | |
| 445 | 449 |
| 446 // MediaStream ----------------------------------------------------- | 450 // MediaStream ----------------------------------------------------- |
| 447 | 451 |
| 448 // A new WebRTCPeerConnectionHandler is created. | 452 // A new WebRTCPeerConnectionHandler is created. |
| 449 virtual void willStartUsingPeerConnectionHandler(WebLocalFrame*, WebRTCPeerC onnectionHandler*) { } | 453 virtual void willStartUsingPeerConnectionHandler(WebLocalFrame*, WebRTCPeerC onnectionHandler*) { } |
| 450 | 454 |
| 451 virtual WebUserMediaClient* userMediaClient() { return 0; } | 455 virtual WebUserMediaClient* userMediaClient() { return 0; } |
| 452 | 456 |
| 453 | 457 |
| 454 // Messages ------------------------------------------------------ | 458 // Messages ------------------------------------------------------ |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 492 // Send initial drawing parameters to a child frame that is being rendered o ut of process. | 496 // Send initial drawing parameters to a child frame that is being rendered o ut of process. |
| 493 virtual void initializeChildFrame(const WebRect& frameRect, float scaleFacto r) { } | 497 virtual void initializeChildFrame(const WebRect& frameRect, float scaleFacto r) { } |
| 494 | 498 |
| 495 protected: | 499 protected: |
| 496 ~WebFrameClient() { } | 500 ~WebFrameClient() { } |
| 497 }; | 501 }; |
| 498 | 502 |
| 499 } // namespace blink | 503 } // namespace blink |
| 500 | 504 |
| 501 #endif | 505 #endif |
| OLD | NEW |