Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(412)

Side by Side Diff: Source/WebCore/testing/Internals.h

Issue 11875020: Merge 138991 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 // Values need to be kept in sync with Internals.idl. 204 // Values need to be kept in sync with Internals.idl.
205 LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1, 205 LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1,
206 LAYER_TREE_INCLUDES_TILE_CACHES = 2, 206 LAYER_TREE_INCLUDES_TILE_CACHES = 2,
207 LAYER_TREE_INCLUDES_REPAINT_RECTS = 4 207 LAYER_TREE_INCLUDES_REPAINT_RECTS = 4
208 208
209 }; 209 };
210 String layerTreeAsText(Document*, unsigned flags, ExceptionCode&) const; 210 String layerTreeAsText(Document*, unsigned flags, ExceptionCode&) const;
211 String layerTreeAsText(Document*, ExceptionCode&) const; 211 String layerTreeAsText(Document*, ExceptionCode&) const;
212 String repaintRectsAsText(Document*, ExceptionCode&) const; 212 String repaintRectsAsText(Document*, ExceptionCode&) const;
213 String scrollingStateTreeAsText(Document*, ExceptionCode&) const; 213 String scrollingStateTreeAsText(Document*, ExceptionCode&) const;
214
215 String mainThreadScrollingReasons(Document*, ExceptionCode&) const; 214 String mainThreadScrollingReasons(Document*, ExceptionCode&) const;
215 PassRefPtr<ClientRectList> nonFastScrollableRects(Document*, ExceptionCode&) const;
216 216
217 void garbageCollectDocumentResources(Document*, ExceptionCode&) const; 217 void garbageCollectDocumentResources(Document*, ExceptionCode&) const;
218 218
219 void allowRoundingHacks() const; 219 void allowRoundingHacks() const;
220 220
221 void insertAuthorCSS(Document*, const String&) const; 221 void insertAuthorCSS(Document*, const String&) const;
222 void insertUserCSS(Document*, const String&) const; 222 void insertUserCSS(Document*, const String&) const;
223 223
224 #if ENABLE(INSPECTOR) 224 #if ENABLE(INSPECTOR)
225 unsigned numberOfLiveNodes() const; 225 unsigned numberOfLiveNodes() const;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionCode&); 274 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionCode&);
275 #if ENABLE(INSPECTOR) 275 #if ENABLE(INSPECTOR)
276 RefPtr<DOMWindow> m_frontendWindow; 276 RefPtr<DOMWindow> m_frontendWindow;
277 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; 277 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel;
278 #endif 278 #endif
279 }; 279 };
280 280
281 } // namespace WebCore 281 } // namespace WebCore
282 282
283 #endif 283 #endif
OLDNEW
« no previous file with comments | « Source/WebCore/page/scrolling/ScrollingCoordinator.cpp ('k') | Source/WebCore/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698