| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 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 | 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 LAYER_TREE_INCLUDES_TILE_CACHES = 2 | 193 LAYER_TREE_INCLUDES_TILE_CACHES = 2 |
| 194 | 194 |
| 195 }; | 195 }; |
| 196 String layerTreeAsText(Document*, unsigned flags, ExceptionCode&) const; | 196 String layerTreeAsText(Document*, unsigned flags, ExceptionCode&) const; |
| 197 String layerTreeAsText(Document*, ExceptionCode&) const; | 197 String layerTreeAsText(Document*, ExceptionCode&) const; |
| 198 | 198 |
| 199 void garbageCollectDocumentResources(Document*, ExceptionCode&) const; | 199 void garbageCollectDocumentResources(Document*, ExceptionCode&) const; |
| 200 | 200 |
| 201 void allowRoundingHacks() const; | 201 void allowRoundingHacks() const; |
| 202 | 202 |
| 203 void insertAuthorCSS(Document*, const String&) const; |
| 204 void insertUserCSS(Document*, const String&) const; |
| 205 |
| 203 #if ENABLE(INSPECTOR) | 206 #if ENABLE(INSPECTOR) |
| 204 unsigned numberOfLiveNodes() const; | 207 unsigned numberOfLiveNodes() const; |
| 205 unsigned numberOfLiveDocuments() const; | 208 unsigned numberOfLiveDocuments() const; |
| 206 Vector<String> consoleMessageArgumentCounts(Document*) const; | 209 Vector<String> consoleMessageArgumentCounts(Document*) const; |
| 207 PassRefPtr<DOMWindow> openDummyInspectorFrontend(const String& url); | 210 PassRefPtr<DOMWindow> openDummyInspectorFrontend(const String& url); |
| 208 void closeDummyInspectorFrontend(); | 211 void closeDummyInspectorFrontend(); |
| 209 void setInspectorResourcesDataSizeLimits(int maximumResourcesContentSize, in
t maximumSingleResourceContentSize, ExceptionCode&); | 212 void setInspectorResourcesDataSizeLimits(int maximumResourcesContentSize, in
t maximumSingleResourceContentSize, ExceptionCode&); |
| 210 void setJavaScriptProfilingEnabled(bool enabled, ExceptionCode&); | 213 void setJavaScriptProfilingEnabled(bool enabled, ExceptionCode&); |
| 211 #endif | 214 #endif |
| 212 | 215 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 241 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); | 244 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); |
| 242 #if ENABLE(INSPECTOR) | 245 #if ENABLE(INSPECTOR) |
| 243 RefPtr<DOMWindow> m_frontendWindow; | 246 RefPtr<DOMWindow> m_frontendWindow; |
| 244 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 247 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
| 245 #endif | 248 #endif |
| 246 }; | 249 }; |
| 247 | 250 |
| 248 } // namespace WebCore | 251 } // namespace WebCore |
| 249 | 252 |
| 250 #endif | 253 #endif |
| OLD | NEW |