| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 #if defined(ENABLE_BATTERY_STATUS) && ENABLE_BATTERY_STATUS | 133 #if defined(ENABLE_BATTERY_STATUS) && ENABLE_BATTERY_STATUS |
| 134 void setBatteryStatus(in Document document, in DOMString eventType, in b
oolean charging, in double chargingTime, in double dischargingTime, in double le
vel) raises (DOMException); | 134 void setBatteryStatus(in Document document, in DOMString eventType, in b
oolean charging, in double chargingTime, in double dischargingTime, in double le
vel) raises (DOMException); |
| 135 #endif | 135 #endif |
| 136 | 136 |
| 137 #if defined(ENABLE_NETWORK_INFO) && ENABLE_NETWORK_INFO | 137 #if defined(ENABLE_NETWORK_INFO) && ENABLE_NETWORK_INFO |
| 138 void setNetworkInformation(in Document document, in DOMString eventType,
in long bandwidth, in boolean metered) raises (DOMException); | 138 void setNetworkInformation(in Document document, in DOMString eventType,
in long bandwidth, in boolean metered) raises (DOMException); |
| 139 #endif | 139 #endif |
| 140 | 140 |
| 141 [Conditional=INSPECTOR] unsigned long numberOfLiveNodes(); | 141 [Conditional=INSPECTOR] unsigned long numberOfLiveNodes(); |
| 142 [Conditional=INSPECTOR] unsigned long numberOfLiveDocuments(); | 142 [Conditional=INSPECTOR] unsigned long numberOfLiveDocuments(); |
| 143 [Conditional=INSPECTOR] sequence<String> consoleMessageArgumentCounts(in
Document document); |
| 143 | 144 |
| 144 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API | 145 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API |
| 145 void webkitWillEnterFullScreenForElement(in Document document, in Elemen
t element); | 146 void webkitWillEnterFullScreenForElement(in Document document, in Elemen
t element); |
| 146 void webkitDidEnterFullScreenForElement(in Document document, in Element
element); | 147 void webkitDidEnterFullScreenForElement(in Document document, in Element
element); |
| 147 void webkitWillExitFullScreenForElement(in Document document, in Element
element); | 148 void webkitWillExitFullScreenForElement(in Document document, in Element
element); |
| 148 void webkitDidExitFullScreenForElement(in Document document, in Element
element); | 149 void webkitDidExitFullScreenForElement(in Document document, in Element
element); |
| 149 #endif | 150 #endif |
| 150 }; | 151 }; |
| 151 } | 152 } |
| 152 | 153 |
| OLD | NEW |