| Index: third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.h
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.h b/third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.h
|
| index 925cbac927e585610ae3dc9e13bba979963067ce..bf0879f8b565b2dc2e947390e268d4efd61035fa 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.h
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.h
|
| @@ -19,6 +19,7 @@
|
| #include "bindings/core/v8/V8Uint8Array.h"
|
| #include "core/CoreExport.h"
|
| #include "core/dom/FlexibleArrayBufferView.h"
|
| +#include "core/dom/MaybeShared.h"
|
| #include "platform/heap/Handle.h"
|
|
|
| namespace blink {
|
| @@ -37,9 +38,9 @@ class CORE_EXPORT TestInterface2OrUint8Array final {
|
| static TestInterface2OrUint8Array fromTestInterface2(TestInterface2*);
|
|
|
| bool isUint8Array() const { return m_type == SpecificTypeUint8Array; }
|
| - DOMUint8Array* getAsUint8Array() const;
|
| - void setUint8Array(DOMUint8Array*);
|
| - static TestInterface2OrUint8Array fromUint8Array(DOMUint8Array*);
|
| + MaybeShared<DOMUint8Array> getAsUint8Array() const;
|
| + void setUint8Array(MaybeShared<DOMUint8Array>);
|
| + static TestInterface2OrUint8Array fromUint8Array(MaybeShared<DOMUint8Array>);
|
|
|
| TestInterface2OrUint8Array(const TestInterface2OrUint8Array&);
|
| ~TestInterface2OrUint8Array();
|
|
|