OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 | 201 |
202 void setBatteryStatus(Document*, const String& eventType, bool charging, dou
ble chargingTime, double dischargingTime, double level, ExceptionCode&); | 202 void setBatteryStatus(Document*, const String& eventType, bool charging, dou
ble chargingTime, double dischargingTime, double level, ExceptionCode&); |
203 | 203 |
204 void setDeviceProximity(Document*, const String& eventType, double value, do
uble min, double max, ExceptionCode&); | 204 void setDeviceProximity(Document*, const String& eventType, double value, do
uble min, double max, ExceptionCode&); |
205 | 205 |
206 enum { | 206 enum { |
207 // Values need to be kept in sync with Internals.idl. | 207 // Values need to be kept in sync with Internals.idl. |
208 LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1, | 208 LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1, |
209 LAYER_TREE_INCLUDES_TILE_CACHES = 2, | 209 LAYER_TREE_INCLUDES_TILE_CACHES = 2, |
210 LAYER_TREE_INCLUDES_REPAINT_RECTS = 4, | 210 LAYER_TREE_INCLUDES_REPAINT_RECTS = 4, |
211 LAYER_TREE_INCLUDES_PAINTING_PHASES = 8 | 211 LAYER_TREE_INCLUDES_PAINTING_PHASES = 8, |
| 212 LAYER_TREE_INCLUDES_ROOT_LAYER = 16 |
212 }; | 213 }; |
213 String layerTreeAsText(Document*, unsigned flags, ExceptionCode&) const; | 214 String layerTreeAsText(Document*, unsigned flags, ExceptionCode&) const; |
214 String layerTreeAsText(Document*, ExceptionCode&) const; | 215 String layerTreeAsText(Document*, ExceptionCode&) const; |
215 | 216 |
216 PassRefPtr<NodeList> paintOrderListBeforePromote(Element*, ExceptionCode&); | 217 PassRefPtr<NodeList> paintOrderListBeforePromote(Element*, ExceptionCode&); |
217 PassRefPtr<NodeList> paintOrderListAfterPromote(Element*, ExceptionCode&); | 218 PassRefPtr<NodeList> paintOrderListAfterPromote(Element*, ExceptionCode&); |
218 | 219 |
219 enum { | 220 enum { |
220 // Values need to be kept in sync with Internals.idl. | 221 // Values need to be kept in sync with Internals.idl. |
221 DoNotForceCompositedScrolling = 0, | 222 DoNotForceCompositedScrolling = 0, |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 | 304 |
304 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); | 305 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); |
305 RefPtr<DOMWindow> m_frontendWindow; | 306 RefPtr<DOMWindow> m_frontendWindow; |
306 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 307 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
307 RefPtr<InternalRuntimeFlags> m_runtimeFlags; | 308 RefPtr<InternalRuntimeFlags> m_runtimeFlags; |
308 }; | 309 }; |
309 | 310 |
310 } // namespace WebCore | 311 } // namespace WebCore |
311 | 312 |
312 #endif | 313 #endif |
OLD | NEW |