| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 class WebColorChooser; | 69 class WebColorChooser; |
| 70 class WebColorChooserClient; | 70 class WebColorChooserClient; |
| 71 class WebContentDecryptionModule; | 71 class WebContentDecryptionModule; |
| 72 class WebCookieJar; | 72 class WebCookieJar; |
| 73 class WebCString; | 73 class WebCString; |
| 74 class WebDataSource; | 74 class WebDataSource; |
| 75 class WebEncryptedMediaClient; | 75 class WebEncryptedMediaClient; |
| 76 class WebExternalPopupMenu; | 76 class WebExternalPopupMenu; |
| 77 class WebExternalPopupMenuClient; | 77 class WebExternalPopupMenuClient; |
| 78 class WebFormElement; | 78 class WebFormElement; |
| 79 class WebGeolocationClient; | |
| 80 class WebInstalledAppClient; | 79 class WebInstalledAppClient; |
| 81 class WebMediaPlayer; | 80 class WebMediaPlayer; |
| 82 class WebMediaPlayerClient; | 81 class WebMediaPlayerClient; |
| 83 class WebMediaPlayerEncryptedMediaClient; | 82 class WebMediaPlayerEncryptedMediaClient; |
| 84 class WebMediaPlayerSource; | 83 class WebMediaPlayerSource; |
| 85 class WebMediaSession; | 84 class WebMediaSession; |
| 86 class WebMediaStream; | 85 class WebMediaStream; |
| 87 class WebMIDIClient; | 86 class WebMIDIClient; |
| 88 class WebNotificationPermissionCallback; | 87 class WebNotificationPermissionCallback; |
| 89 class WebPermissionClient; | 88 class WebPermissionClient; |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 virtual void requestStorageQuota( | 554 virtual void requestStorageQuota( |
| 556 WebStorageQuotaType, | 555 WebStorageQuotaType, |
| 557 unsigned long long newQuotaInBytes, | 556 unsigned long long newQuotaInBytes, |
| 558 WebStorageQuotaCallbacks) { } | 557 WebStorageQuotaCallbacks) { } |
| 559 | 558 |
| 560 // WebSocket ----------------------------------------------------- | 559 // WebSocket ----------------------------------------------------- |
| 561 | 560 |
| 562 // A WebSocket object is going to open a new WebSocket connection. | 561 // A WebSocket object is going to open a new WebSocket connection. |
| 563 virtual void willOpenWebSocket(WebSocketHandle*) { } | 562 virtual void willOpenWebSocket(WebSocketHandle*) { } |
| 564 | 563 |
| 565 // Geolocation --------------------------------------------------------- | |
| 566 | |
| 567 // Access the embedder API for (client-based) geolocation client . | |
| 568 virtual WebGeolocationClient* geolocationClient() { return 0; } | |
| 569 | |
| 570 | |
| 571 // MediaStream ----------------------------------------------------- | 564 // MediaStream ----------------------------------------------------- |
| 572 | 565 |
| 573 // A new WebRTCPeerConnectionHandler is created. | 566 // A new WebRTCPeerConnectionHandler is created. |
| 574 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler
*) { } | 567 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler
*) { } |
| 575 | 568 |
| 576 virtual WebUserMediaClient* userMediaClient() { return 0; } | 569 virtual WebUserMediaClient* userMediaClient() { return 0; } |
| 577 | 570 |
| 578 | 571 |
| 579 // Encrypted Media ------------------------------------------------- | 572 // Encrypted Media ------------------------------------------------- |
| 580 | 573 |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 720 // Mojo ---------------------------------------------------------------- | 713 // Mojo ---------------------------------------------------------------- |
| 721 virtual ServiceRegistry* serviceRegistry() { return nullptr; } | 714 virtual ServiceRegistry* serviceRegistry() { return nullptr; } |
| 722 | 715 |
| 723 protected: | 716 protected: |
| 724 virtual ~WebFrameClient() { } | 717 virtual ~WebFrameClient() { } |
| 725 }; | 718 }; |
| 726 | 719 |
| 727 } // namespace blink | 720 } // namespace blink |
| 728 | 721 |
| 729 #endif | 722 #endif |
| OLD | NEW |