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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 class WebPlugin; | 78 class WebPlugin; |
79 class WebPluginPlaceholder; | 79 class WebPluginPlaceholder; |
80 class WebPresentationClient; | 80 class WebPresentationClient; |
81 class WebPushClient; | 81 class WebPushClient; |
82 class WebRTCPeerConnectionHandler; | 82 class WebRTCPeerConnectionHandler; |
83 class WebScreenOrientationClient; | 83 class WebScreenOrientationClient; |
84 class WebString; | 84 class WebString; |
85 class WebURL; | 85 class WebURL; |
86 class WebURLResponse; | 86 class WebURLResponse; |
87 class WebUserMediaClient; | 87 class WebUserMediaClient; |
| 88 class WebWakeLockClient; |
88 class WebWorkerContentSettingsClientProxy; | 89 class WebWorkerContentSettingsClientProxy; |
89 struct WebColorSuggestion; | 90 struct WebColorSuggestion; |
90 struct WebConsoleMessage; | 91 struct WebConsoleMessage; |
91 struct WebContextMenuData; | 92 struct WebContextMenuData; |
92 struct WebPluginParams; | 93 struct WebPluginParams; |
93 struct WebPopupMenuInfo; | 94 struct WebPopupMenuInfo; |
94 struct WebRect; | 95 struct WebRect; |
95 struct WebTransitionElementData; | 96 struct WebTransitionElementData; |
96 struct WebURLError; | 97 struct WebURLError; |
97 | 98 |
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
507 virtual void requestStorageQuota( | 508 virtual void requestStorageQuota( |
508 WebLocalFrame*, WebStorageQuotaType, | 509 WebLocalFrame*, WebStorageQuotaType, |
509 unsigned long long newQuotaInBytes, | 510 unsigned long long newQuotaInBytes, |
510 WebStorageQuotaCallbacks) { } | 511 WebStorageQuotaCallbacks) { } |
511 | 512 |
512 // WebSocket ----------------------------------------------------- | 513 // WebSocket ----------------------------------------------------- |
513 | 514 |
514 // A WebSocket object is going to open a new WebSocket connection. | 515 // A WebSocket object is going to open a new WebSocket connection. |
515 virtual void willOpenWebSocket(WebSocketHandle*) { } | 516 virtual void willOpenWebSocket(WebSocketHandle*) { } |
516 | 517 |
| 518 // Wake Lock ----------------------------------------------------- |
| 519 |
| 520 virtual WebWakeLockClient* wakeLockClient() { return 0; } |
517 | 521 |
518 // Geolocation --------------------------------------------------------- | 522 // Geolocation --------------------------------------------------------- |
519 | 523 |
520 // Access the embedder API for (client-based) geolocation client . | 524 // Access the embedder API for (client-based) geolocation client . |
521 virtual WebGeolocationClient* geolocationClient() { return 0; } | 525 virtual WebGeolocationClient* geolocationClient() { return 0; } |
522 | 526 |
523 | 527 |
524 // MediaStream ----------------------------------------------------- | 528 // MediaStream ----------------------------------------------------- |
525 | 529 |
526 // A new WebRTCPeerConnectionHandler is created. | 530 // A new WebRTCPeerConnectionHandler is created. |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
639 // Access the embedder API for permission client. | 643 // Access the embedder API for permission client. |
640 virtual WebPermissionClient* permissionClient() { return 0; } | 644 virtual WebPermissionClient* permissionClient() { return 0; } |
641 | 645 |
642 protected: | 646 protected: |
643 virtual ~WebFrameClient() { } | 647 virtual ~WebFrameClient() { } |
644 }; | 648 }; |
645 | 649 |
646 } // namespace blink | 650 } // namespace blink |
647 | 651 |
648 #endif | 652 #endif |
OLD | NEW |