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

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: Synced. 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
« no previous file with comments | « Source/core/streams/ReadableStreamTest.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/testing/Internals.h
diff --git a/Source/core/testing/Internals.h b/Source/core/testing/Internals.h
index 9d0eb1a188a1b0e7a97b807fbee0217279528f2a..011665c7fecd4bb58b82a9ced40fc5a417ef0f2d 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 DocumentFragment;
@@ -63,6 +62,7 @@ class InternalRuntimeFlags;
class InternalSettings;
class Iterator;
class LayerRectList;
+class LocalDOMWindow;
class LocalFrame;
class Node;
class Page;
@@ -71,9 +71,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();
@@ -274,8 +274,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&);
« no previous file with comments | « Source/core/streams/ReadableStreamTest.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698