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

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

Issue 1878463002: Move DOMArrayBuffer, DOMArrayBufferViews and DataView to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tidy Created 4 years, 8 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except ionState&); 288 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except ionState&);
289 void forceFullRepaint(Document*, ExceptionState&); 289 void forceFullRepaint(Document*, ExceptionState&);
290 290
291 void startTrackingPaintInvalidationObjects(); 291 void startTrackingPaintInvalidationObjects();
292 void stopTrackingPaintInvalidationObjects(); 292 void stopTrackingPaintInvalidationObjects();
293 Vector<String> trackedPaintInvalidationObjects(); 293 Vector<String> trackedPaintInvalidationObjects();
294 294
295 ClientRectList* draggableRegions(Document*, ExceptionState&); 295 ClientRectList* draggableRegions(Document*, ExceptionState&);
296 ClientRectList* nonDraggableRegions(Document*, ExceptionState&); 296 ClientRectList* nonDraggableRegions(Document*, ExceptionState&);
297 297
298 PassRefPtr<DOMArrayBuffer> serializeObject(PassRefPtr<SerializedScriptValue> ) const; 298 DOMArrayBuffer* serializeObject(PassRefPtr<SerializedScriptValue>) const;
299 PassRefPtr<SerializedScriptValue> deserializeBuffer(PassRefPtr<DOMArrayBuffe r>) const; 299 PassRefPtr<SerializedScriptValue> deserializeBuffer(DOMArrayBuffer*) const;
300 300
301 String getCurrentCursorInfo(); 301 String getCurrentCursorInfo();
302 302
303 bool cursorUpdatePending() const; 303 bool cursorUpdatePending() const;
304 304
305 String markerTextForListItem(Element*); 305 String markerTextForListItem(Element*);
306 306
307 void forceReload(bool bypassCache); 307 void forceReload(bool bypassCache);
308 308
309 String getImageSourceURL(Element*); 309 String getImageSourceURL(Element*);
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 415
416 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); 416 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&);
417 Member<InternalRuntimeFlags> m_runtimeFlags; 417 Member<InternalRuntimeFlags> m_runtimeFlags;
418 418
419 IterationSource* startIteration(ScriptState*, ExceptionState&) override; 419 IterationSource* startIteration(ScriptState*, ExceptionState&) override;
420 }; 420 };
421 421
422 } // namespace blink 422 } // namespace blink
423 423
424 #endif // Internals_h 424 #endif // Internals_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698