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

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

Issue 2000323008: Use original repaint tests for spv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 * 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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 DictionaryTest* dictionaryTest() const; 283 DictionaryTest* dictionaryTest() const;
284 UnionTypesTest* unionTypesTest() const; 284 UnionTypesTest* unionTypesTest() const;
285 285
286 Vector<String> getReferencedFilePaths() const; 286 Vector<String> getReferencedFilePaths() const;
287 287
288 void startTrackingRepaints(Document*, ExceptionState&); 288 void startTrackingRepaints(Document*, ExceptionState&);
289 void stopTrackingRepaints(Document*, ExceptionState&); 289 void stopTrackingRepaints(Document*, ExceptionState&);
290 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except ionState&); 290 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except ionState&);
291 void forceFullRepaint(Document*, ExceptionState&); 291 void forceFullRepaint(Document*, ExceptionState&);
292 292
293 void startTrackingPaintInvalidationObjects();
294 void stopTrackingPaintInvalidationObjects();
295 Vector<String> trackedPaintInvalidationObjects();
296
297 ClientRectList* draggableRegions(Document*, ExceptionState&); 293 ClientRectList* draggableRegions(Document*, ExceptionState&);
298 ClientRectList* nonDraggableRegions(Document*, ExceptionState&); 294 ClientRectList* nonDraggableRegions(Document*, ExceptionState&);
299 295
300 DOMArrayBuffer* serializeObject(PassRefPtr<SerializedScriptValue>) const; 296 DOMArrayBuffer* serializeObject(PassRefPtr<SerializedScriptValue>) const;
301 PassRefPtr<SerializedScriptValue> deserializeBuffer(DOMArrayBuffer*) const; 297 PassRefPtr<SerializedScriptValue> deserializeBuffer(DOMArrayBuffer*) const;
302 298
303 String getCurrentCursorInfo(); 299 String getCurrentCursorInfo();
304 300
305 bool cursorUpdatePending() const; 301 bool cursorUpdatePending() const;
306 302
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 411
416 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); 412 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&);
417 Member<InternalRuntimeFlags> m_runtimeFlags; 413 Member<InternalRuntimeFlags> m_runtimeFlags;
418 414
419 IterationSource* startIteration(ScriptState*, ExceptionState&) override; 415 IterationSource* startIteration(ScriptState*, ExceptionState&) override;
420 }; 416 };
421 417
422 } // namespace blink 418 } // namespace blink
423 419
424 #endif // Internals_h 420 #endif // Internals_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698