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

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

Issue 315443002: Compute minimum repaint and show them in overlay (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix the top link in overlay Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 271
272 PassRefPtrWillBeRawPtr<MallocStatistics> mallocStatistics() const; 272 PassRefPtrWillBeRawPtr<MallocStatistics> mallocStatistics() const;
273 PassRefPtrWillBeRawPtr<TypeConversions> typeConversions() const; 273 PassRefPtrWillBeRawPtr<TypeConversions> typeConversions() const;
274 274
275 Vector<String> getReferencedFilePaths() const; 275 Vector<String> getReferencedFilePaths() const;
276 276
277 void startTrackingRepaints(Document*, ExceptionState&); 277 void startTrackingRepaints(Document*, ExceptionState&);
278 void stopTrackingRepaints(Document*, ExceptionState&); 278 void stopTrackingRepaints(Document*, ExceptionState&);
279 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(ExceptionStat e&); 279 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(ExceptionStat e&);
280 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except ionState&); 280 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except ionState&);
281 void forceFullRepaint(Document*, ExceptionState&);
281 282
282 PassRefPtrWillBeRawPtr<ClientRectList> draggableRegions(Document*, Exception State&); 283 PassRefPtrWillBeRawPtr<ClientRectList> draggableRegions(Document*, Exception State&);
283 PassRefPtrWillBeRawPtr<ClientRectList> nonDraggableRegions(Document*, Except ionState&); 284 PassRefPtrWillBeRawPtr<ClientRectList> nonDraggableRegions(Document*, Except ionState&);
284 285
285 PassRefPtr<ArrayBuffer> serializeObject(PassRefPtr<SerializedScriptValue>) c onst; 286 PassRefPtr<ArrayBuffer> serializeObject(PassRefPtr<SerializedScriptValue>) c onst;
286 PassRefPtr<SerializedScriptValue> deserializeBuffer(PassRefPtr<ArrayBuffer>) const; 287 PassRefPtr<SerializedScriptValue> deserializeBuffer(PassRefPtr<ArrayBuffer>) const;
287 288
288 String getCurrentCursorInfo(Document*, ExceptionState&); 289 String getCurrentCursorInfo(Document*, ExceptionState&);
289 290
290 String markerTextForListItem(Element*, ExceptionState&); 291 String markerTextForListItem(Element*, ExceptionState&);
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag gable, ExceptionState&); 332 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag gable, ExceptionState&);
332 333
333 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); 334 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&);
334 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; 335 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags;
335 RefPtrWillBeMember<InternalProfilers> m_profilers; 336 RefPtrWillBeMember<InternalProfilers> m_profilers;
336 }; 337 };
337 338
338 } // namespace WebCore 339 } // namespace WebCore
339 340
340 #endif 341 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698