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

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

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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/testing/Internals.h ('k') | Source/core/xml/XMLHttpRequest.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 24 matching lines...) Expand all
35 #include "bindings/core/v8/SerializedScriptValue.h" 35 #include "bindings/core/v8/SerializedScriptValue.h"
36 #include "bindings/core/v8/V8ThrowException.h" 36 #include "bindings/core/v8/V8ThrowException.h"
37 #include "core/InternalRuntimeFlags.h" 37 #include "core/InternalRuntimeFlags.h"
38 #include "core/animation/AnimationTimeline.h" 38 #include "core/animation/AnimationTimeline.h"
39 #include "core/css/StyleSheetContents.h" 39 #include "core/css/StyleSheetContents.h"
40 #include "core/css/resolver/StyleResolver.h" 40 #include "core/css/resolver/StyleResolver.h"
41 #include "core/css/resolver/StyleResolverStats.h" 41 #include "core/css/resolver/StyleResolverStats.h"
42 #include "core/css/resolver/ViewportStyleResolver.h" 42 #include "core/css/resolver/ViewportStyleResolver.h"
43 #include "core/dom/ClientRect.h" 43 #include "core/dom/ClientRect.h"
44 #include "core/dom/ClientRectList.h" 44 #include "core/dom/ClientRectList.h"
45 #include "core/dom/DOMArrayBuffer.h"
45 #include "core/dom/DOMPoint.h" 46 #include "core/dom/DOMPoint.h"
46 #include "core/dom/DOMStringList.h" 47 #include "core/dom/DOMStringList.h"
47 #include "core/dom/Document.h" 48 #include "core/dom/Document.h"
48 #include "core/dom/DocumentMarker.h" 49 #include "core/dom/DocumentMarker.h"
49 #include "core/dom/DocumentMarkerController.h" 50 #include "core/dom/DocumentMarkerController.h"
50 #include "core/dom/Element.h" 51 #include "core/dom/Element.h"
51 #include "core/dom/ExceptionCode.h" 52 #include "core/dom/ExceptionCode.h"
52 #include "core/dom/Iterator.h" 53 #include "core/dom/Iterator.h"
53 #include "core/dom/NodeRenderStyle.h" 54 #include "core/dom/NodeRenderStyle.h"
54 #include "core/dom/PseudoElement.h" 55 #include "core/dom/PseudoElement.h"
(...skipping 1919 matching lines...) Expand 10 before | Expand all | Expand 10 after
1974 } 1975 }
1975 if (cursor.imageScaleFactor() != 1) { 1976 if (cursor.imageScaleFactor() != 1) {
1976 result.appendLiteral(" scale="); 1977 result.appendLiteral(" scale=");
1977 NumberToStringBuffer buffer; 1978 NumberToStringBuffer buffer;
1978 result.append(numberToFixedPrecisionString(cursor.imageScaleFactor(), 8, buffer, true)); 1979 result.append(numberToFixedPrecisionString(cursor.imageScaleFactor(), 8, buffer, true));
1979 } 1980 }
1980 1981
1981 return result.toString(); 1982 return result.toString();
1982 } 1983 }
1983 1984
1984 PassRefPtr<ArrayBuffer> Internals::serializeObject(PassRefPtr<SerializedScriptVa lue> value) const 1985 PassRefPtr<DOMArrayBuffer> Internals::serializeObject(PassRefPtr<SerializedScrip tValue> value) const
1985 { 1986 {
1986 String stringValue = value->toWireString(); 1987 String stringValue = value->toWireString();
1987 RefPtr<ArrayBuffer> buffer = ArrayBuffer::createUninitialized(stringValue.le ngth(), sizeof(UChar)); 1988 RefPtr<ArrayBuffer> buffer = ArrayBuffer::createUninitialized(stringValue.le ngth(), sizeof(UChar));
1988 stringValue.copyTo(static_cast<UChar*>(buffer->data()), 0, stringValue.lengt h()); 1989 stringValue.copyTo(static_cast<UChar*>(buffer->data()), 0, stringValue.lengt h());
1989 return buffer.release(); 1990 return DOMArrayBuffer::create(buffer.release());
1990 } 1991 }
1991 1992
1992 PassRefPtr<SerializedScriptValue> Internals::deserializeBuffer(PassRefPtr<ArrayB uffer> buffer) const 1993 PassRefPtr<SerializedScriptValue> Internals::deserializeBuffer(PassRefPtr<DOMArr ayBuffer> buffer) const
1993 { 1994 {
1994 String value(static_cast<const UChar*>(buffer->data()), buffer->byteLength() / sizeof(UChar)); 1995 String value(static_cast<const UChar*>(buffer->data()), buffer->byteLength() / sizeof(UChar));
1995 return SerializedScriptValue::createFromWire(value); 1996 return SerializedScriptValue::createFromWire(value);
1996 } 1997 }
1997 1998
1998 void Internals::forceReload(bool endToEnd) 1999 void Internals::forceReload(bool endToEnd)
1999 { 2000 {
2000 frame()->loader().reload(endToEnd ? EndToEndReload : NormalReload); 2001 frame()->loader().reload(endToEnd ? EndToEndReload : NormalReload);
2001 } 2002 }
2002 2003
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
2283 } 2284 }
2284 toHTMLPlugInElement(element)->setPlaceholder(DictionaryPluginPlaceholder::cr eate(element->document(), options)); 2285 toHTMLPlugInElement(element)->setPlaceholder(DictionaryPluginPlaceholder::cr eate(element->document(), options));
2285 } 2286 }
2286 2287
2287 Iterator* Internals::iterator(ScriptState* scriptState, ExceptionState& exceptio nState) 2288 Iterator* Internals::iterator(ScriptState* scriptState, ExceptionState& exceptio nState)
2288 { 2289 {
2289 return new InternalsIterator; 2290 return new InternalsIterator;
2290 } 2291 }
2291 2292
2292 } // namespace blink 2293 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/testing/Internals.h ('k') | Source/core/xml/XMLHttpRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698