| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009, 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #ifndef SerializedScriptValue_h | 31 #ifndef SerializedScriptValue_h |
| 32 #define SerializedScriptValue_h | 32 #define SerializedScriptValue_h |
| 33 | 33 |
| 34 #include <memory> | 34 #include <memory> |
| 35 | 35 |
| 36 #include "bindings/core/v8/NativeValueTraits.h" | 36 #include "bindings/core/v8/NativeValueTraits.h" |
| 37 #include "bindings/core/v8/ScriptValue.h" | 37 #include "bindings/core/v8/ScriptValue.h" |
| 38 #include "bindings/core/v8/Transferables.h" | 38 #include "bindings/core/v8/Transferables.h" |
| 39 #include "core/CoreExport.h" | 39 #include "core/CoreExport.h" |
| 40 #include "platform/wtf/Allocator.h" |
| 41 #include "platform/wtf/HashMap.h" |
| 42 #include "platform/wtf/ThreadSafeRefCounted.h" |
| 43 #include "platform/wtf/allocator/Partitions.h" |
| 44 #include "platform/wtf/typed_arrays/ArrayBufferContents.h" |
| 40 #include "v8/include/v8.h" | 45 #include "v8/include/v8.h" |
| 41 #include "wtf/Allocator.h" | |
| 42 #include "wtf/HashMap.h" | |
| 43 #include "wtf/ThreadSafeRefCounted.h" | |
| 44 #include "wtf/allocator/Partitions.h" | |
| 45 #include "wtf/typed_arrays/ArrayBufferContents.h" | |
| 46 | 46 |
| 47 namespace blink { | 47 namespace blink { |
| 48 | 48 |
| 49 class BlobDataHandle; | 49 class BlobDataHandle; |
| 50 class Transferables; | 50 class Transferables; |
| 51 class ExceptionState; | 51 class ExceptionState; |
| 52 class StaticBitmapImage; | 52 class StaticBitmapImage; |
| 53 class WebBlobInfo; | 53 class WebBlobInfo; |
| 54 | 54 |
| 55 typedef HashMap<String, RefPtr<BlobDataHandle>> BlobDataHandleMap; | 55 typedef HashMap<String, RefPtr<BlobDataHandle>> BlobDataHandleMap; |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 ExceptionState& exceptionState) { | 218 ExceptionState& exceptionState) { |
| 219 return SerializedScriptValue::serialize( | 219 return SerializedScriptValue::serialize( |
| 220 isolate, value, SerializedScriptValue::SerializeOptions(), | 220 isolate, value, SerializedScriptValue::SerializeOptions(), |
| 221 exceptionState); | 221 exceptionState); |
| 222 } | 222 } |
| 223 }; | 223 }; |
| 224 | 224 |
| 225 } // namespace blink | 225 } // namespace blink |
| 226 | 226 |
| 227 #endif // SerializedScriptValue_h | 227 #endif // SerializedScriptValue_h |
| OLD | NEW |