|
Lines 1-3
a/Source/WebCore/ChangeLog_sec1
|
|
|
1 |
2012-03-28 Gyuyoung Kim <gyuyoung.kim@samsung.com> |
| 2 |
|
| 3 |
Support the Network Information API |
| 4 |
https://bugs.webkit.org/show_bug.cgi?id=73528 |
| 5 |
|
| 6 |
Reviewed by NOBODY (OOPS!). |
| 7 |
|
| 8 |
Network Information APIs is to provide an interface for Web Applications to access |
| 9 |
the underlying network information of device. In Web Application case, they need to know |
| 10 |
what current network interface it uses. Because, it is important to know current network |
| 11 |
information(bandwidth, metered) in mobile domain. Thus, Web Application can let user know |
| 12 |
whether current network information via this new functionality. In addition, in streaming |
| 13 |
service case, Web Application can control content resolution according to kind of network. |
| 14 |
|
| 15 |
http://dvcs.w3.org/hg/dap/raw-file/tip/network-api/index.html |
| 16 |
|
| 17 |
Tests: networkinformation/add-listener-from-callback.html |
| 18 |
networkinformation/basic-all-types-of-events.html |
| 19 |
networkinformation/basic-operation.html |
| 20 |
networkinformation/event-after-navigation.html |
| 21 |
networkinformation/multiple-frames.html |
| 22 |
networkinformation/updates.html |
| 23 |
networkinformation/window-property.html |
| 24 |
|
| 25 |
* CMakeLists.txt: |
| 26 |
* Modules/networkinfo/NavigatorNetworkInfoConnection.cpp: Added. |
| 27 |
(WebCore): |
| 28 |
(WebCore::NavigatorNetworkInfoConnection::NavigatorNetworkInfoConnection): |
| 29 |
(WebCore::NavigatorNetworkInfoConnection::~NavigatorNetworkInfoConnection): |
| 30 |
(WebCore::NavigatorNetworkInfoConnection::from): |
| 31 |
(WebCore::NavigatorNetworkInfoConnection::webkitConnection): |
| 32 |
* Modules/networkinfo/NavigatorNetworkInfoConnection.h: Added. |
| 33 |
(WebCore): |
| 34 |
(NavigatorNetworkInfoConnection): |
| 35 |
* Modules/networkinfo/NavigatorNetworkInfoConnection.idl: Added. |
| 36 |
* Modules/networkinfo/NetworkInfo.cpp: Added. |
| 37 |
(WebCore): |
| 38 |
(WebCore::NetworkInfo::NetworkInfo): |
| 39 |
* Modules/networkinfo/NetworkInfo.h: Added. |
| 40 |
(WebCore): |
| 41 |
(NetworkInfo): |
| 42 |
(WebCore::NetworkInfo::create): |
| 43 |
(WebCore::NetworkInfo::bandwidth): |
| 44 |
(WebCore::NetworkInfo::metered): |
| 45 |
* Modules/networkinfo/NetworkInfoClient.h: Added. |
| 46 |
(WebCore): |
| 47 |
(NetworkInfoClient): |
| 48 |
(WebCore::NetworkInfoClient::~NetworkInfoClient): |
| 49 |
* Modules/networkinfo/NetworkInfoConnection.cpp: Added. |
| 50 |
(WebCore): |
| 51 |
(WebCore::NetworkInfoConnection::create): |
| 52 |
(WebCore::NetworkInfoConnection::NetworkInfoConnection): |
| 53 |
(WebCore::NetworkInfoConnection::~NetworkInfoConnection): |
| 54 |
(WebCore::NetworkInfoConnection::bandwidth): |
| 55 |
(WebCore::NetworkInfoConnection::metered): |
| 56 |
(WebCore::NetworkInfoConnection::didChangeNetworkInformation): |
| 57 |
(WebCore::NetworkInfoConnection::addEventListener): |
| 58 |
(WebCore::NetworkInfoConnection::removeEventListener): |
| 59 |
(WebCore::NetworkInfoConnection::eventTargetData): |
| 60 |
(WebCore::NetworkInfoConnection::ensureEventTargetData): |
| 61 |
(WebCore::NetworkInfoConnection::interfaceName): |
| 62 |
(WebCore::NetworkInfoConnection::suspend): |
| 63 |
(WebCore::NetworkInfoConnection::resume): |
| 64 |
(WebCore::NetworkInfoConnection::stop): |
| 65 |
* Modules/networkinfo/NetworkInfoConnection.h: Added. |
| 66 |
(WebCore): |
| 67 |
(NetworkInfoConnection): |
| 68 |
(WebCore::NetworkInfoConnection::scriptExecutionContext): |
| 69 |
(WebCore::NetworkInfoConnection::canSuspend): |
| 70 |
(WebCore::NetworkInfoConnection::refEventTarget): |
| 71 |
(WebCore::NetworkInfoConnection::derefEventTarget): |
| 72 |
* Modules/networkinfo/NetworkInfoConnection.idl: Added. |
| 73 |
* Modules/networkinfo/NetworkInfoController.cpp: Added. |
| 74 |
(WebCore): |
| 75 |
(WebCore::NetworkInfoController::NetworkInfoController): |
| 76 |
(WebCore::NetworkInfoController::~NetworkInfoController): |
| 77 |
(WebCore::NetworkInfoController::create): |
| 78 |
(WebCore::NetworkInfoController::addListener): |
| 79 |
(WebCore::NetworkInfoController::removeListener): |
| 80 |
(WebCore::NetworkInfoController::didChangeNetworkInformation): |
| 81 |
(WebCore::NetworkInfoController::isActive): |
| 82 |
(WebCore::NetworkInfoController::supplementName): |
| 83 |
(WebCore::provideNetworkInfoTo): |
| 84 |
* Modules/networkinfo/NetworkInfoController.h: Added. |
| 85 |
(WebCore): |
| 86 |
(NetworkInfoController): |
| 87 |
(WebCore::NetworkInfoController::client): |
| 88 |
(WebCore::NetworkInfoController::from): |
| 89 |
* dom/EventNames.h: |
| 90 |
(WebCore): |
| 91 |
* dom/EventTargetFactory.in: |
| 92 |
* testing/Internals.cpp: |
| 93 |
(WebCore::Internals::setNetworkInformation): |
| 94 |
(WebCore): |
| 95 |
* testing/Internals.h: |
| 96 |
(Internals): |
| 97 |
* testing/Internals.idl: |
| 98 |
|
| 1 |
2012-03-28 Li Yin <li.yin@intel.com> |
99 |
2012-03-28 Li Yin <li.yin@intel.com> |
| 2 |
|
100 |
|
| 3 |
[WebSocket]Browser must fail connection if Sec-WebSocket-Protocol mismatched. |
101 |
[WebSocket]Browser must fail connection if Sec-WebSocket-Protocol mismatched. |