Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "bindings/core/v8/ScriptValueSerializer.h" | 5 #include "bindings/core/v8/ScriptValueSerializer.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/Transferables.h" | 7 #include "bindings/core/v8/Transferables.h" |
| 8 #include "bindings/core/v8/V8ArrayBuffer.h" | 8 #include "bindings/core/v8/V8ArrayBuffer.h" |
| 9 #include "bindings/core/v8/V8ArrayBufferView.h" | 9 #include "bindings/core/v8/V8ArrayBufferView.h" |
| 10 #include "bindings/core/v8/V8Blob.h" | 10 #include "bindings/core/v8/V8Blob.h" |
| 11 #include "bindings/core/v8/V8CompositorProxy.h" | 11 #include "bindings/core/v8/V8CompositorProxy.h" |
| 12 #include "bindings/core/v8/V8File.h" | 12 #include "bindings/core/v8/V8File.h" |
| 13 #include "bindings/core/v8/V8FileList.h" | 13 #include "bindings/core/v8/V8FileList.h" |
| 14 #include "bindings/core/v8/V8Float32ImageData.h" | |
|
Justin Novosad
2016/12/08 18:16:34
Why is this needed?
zakerinasab
2016/12/08 20:40:51
Can be removed for now as we have not covered seri
| |
| 14 #include "bindings/core/v8/V8ImageBitmap.h" | 15 #include "bindings/core/v8/V8ImageBitmap.h" |
| 15 #include "bindings/core/v8/V8ImageData.h" | 16 #include "bindings/core/v8/V8ImageData.h" |
| 16 #include "bindings/core/v8/V8MessagePort.h" | 17 #include "bindings/core/v8/V8MessagePort.h" |
| 17 #include "bindings/core/v8/V8OffscreenCanvas.h" | 18 #include "bindings/core/v8/V8OffscreenCanvas.h" |
| 18 #include "bindings/core/v8/V8SharedArrayBuffer.h" | 19 #include "bindings/core/v8/V8SharedArrayBuffer.h" |
| 19 #include "core/dom/CompositorProxy.h" | 20 #include "core/dom/CompositorProxy.h" |
| 20 #include "core/dom/DOMDataView.h" | 21 #include "core/dom/DOMDataView.h" |
| 21 #include "core/dom/DOMSharedArrayBuffer.h" | 22 #include "core/dom/DOMSharedArrayBuffer.h" |
| 22 #include "core/dom/DOMTypedArray.h" | 23 #include "core/dom/DOMTypedArray.h" |
| 23 #include "core/fileapi/Blob.h" | 24 #include "core/fileapi/Blob.h" |
| (...skipping 2628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2652 m_openCompositeReferenceStack[m_openCompositeReferenceStack.size() - 1]; | 2653 m_openCompositeReferenceStack[m_openCompositeReferenceStack.size() - 1]; |
| 2653 m_openCompositeReferenceStack.shrink(m_openCompositeReferenceStack.size() - | 2654 m_openCompositeReferenceStack.shrink(m_openCompositeReferenceStack.size() - |
| 2654 1); | 2655 1); |
| 2655 if (objectReference >= m_objectPool.size()) | 2656 if (objectReference >= m_objectPool.size()) |
| 2656 return false; | 2657 return false; |
| 2657 *object = m_objectPool[objectReference]; | 2658 *object = m_objectPool[objectReference]; |
| 2658 return true; | 2659 return true; |
| 2659 } | 2660 } |
| 2660 | 2661 |
| 2661 } // namespace blink | 2662 } // namespace blink |
| OLD | NEW |