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

Unified Diff: Source/core/testing/Internals.h

Issue 606653006: bindings: Adds DOMArrayBuffer, etc. as thin wrappers for ArrayBuffer, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed Win GPU tests (DOMDataView). Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/testing/Internals.h
diff --git a/Source/core/testing/Internals.h b/Source/core/testing/Internals.h
index 95582d9e4942160894124ed301cfff97f2cd0cca..4fea4d5b72a3af85a31f8bcde42fa04fa2d97298 100644
--- a/Source/core/testing/Internals.h
+++ b/Source/core/testing/Internals.h
@@ -35,7 +35,6 @@
#include "core/dom/ContextLifecycleObserver.h"
#include "core/page/scrolling/ScrollingCoordinator.h"
#include "platform/heap/Handle.h"
-#include "wtf/ArrayBuffer.h"
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
#include "wtf/text/WTFString.h"
@@ -45,9 +44,9 @@ namespace blink {
class CanvasRenderingContext2D;
class ClientRect;
class ClientRectList;
+class DOMArrayBuffer;
class DOMPoint;
class DOMStringList;
-class LocalDOMWindow;
class DictionaryTest;
class Document;
class DocumentMarker;
@@ -62,6 +61,7 @@ class InternalRuntimeFlags;
class InternalSettings;
class Iterator;
class LayerRectList;
+class LocalDOMWindow;
class LocalFrame;
class Node;
class Page;
@@ -70,9 +70,9 @@ class PrivateScriptTest;
class Range;
class SerializedScriptValue;
class ShadowRoot;
+class TypeConversions;
template <typename NodeType> class StaticNodeTypeList;
typedef StaticNodeTypeList<Node> StaticNodeList;
-class TypeConversions;
class Internals final : public GarbageCollectedFinalized<Internals>, public ScriptWrappable, public ContextLifecycleObserver {
DEFINE_WRAPPERTYPEINFO();
@@ -272,8 +272,8 @@ public:
PassRefPtrWillBeRawPtr<ClientRectList> draggableRegions(Document*, ExceptionState&);
PassRefPtrWillBeRawPtr<ClientRectList> nonDraggableRegions(Document*, ExceptionState&);
- PassRefPtr<ArrayBuffer> serializeObject(PassRefPtr<SerializedScriptValue>) const;
- PassRefPtr<SerializedScriptValue> deserializeBuffer(PassRefPtr<ArrayBuffer>) const;
+ PassRefPtr<DOMArrayBuffer> serializeObject(PassRefPtr<SerializedScriptValue>) const;
+ PassRefPtr<SerializedScriptValue> deserializeBuffer(PassRefPtr<DOMArrayBuffer>) const;
String getCurrentCursorInfo(Document*, ExceptionState&);

Powered by Google App Engine
This is Rietveld 408576698