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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.h

Issue 1974143002: Revert of Generate separate files for union type containers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
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
deleted file mode 100644
index b4f8d1debea92b0a6daf1ec568d9d01ca567b9b7..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.h
+++ /dev/null
@@ -1,82 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY!
-
-#ifndef TestInterface2OrUint8Array_h
-#define TestInterface2OrUint8Array_h
-
-#include "bindings/core/v8/Dictionary.h"
-#include "bindings/core/v8/ExceptionState.h"
-#include "bindings/core/v8/V8Binding.h"
-#include "core/CoreExport.h"
-#include "platform/heap/Handle.h"
-
-namespace blink {
-
-class DOMUint8Array;
-class TestInterface2;
-
-class CORE_EXPORT TestInterface2OrUint8Array final {
- DISALLOW_NEW_EXCEPT_PLACEMENT_NEW();
-public:
- TestInterface2OrUint8Array();
- bool isNull() const { return m_type == SpecificTypeNone; }
-
- bool isTestInterface2() const { return m_type == SpecificTypeTestInterface2; }
- TestInterface2* getAsTestInterface2() const;
- void setTestInterface2(TestInterface2*);
- static TestInterface2OrUint8Array fromTestInterface2(TestInterface2*);
-
- bool isUint8Array() const { return m_type == SpecificTypeUint8Array; }
- DOMUint8Array* getAsUint8Array() const;
- void setUint8Array(DOMUint8Array*);
- static TestInterface2OrUint8Array fromUint8Array(DOMUint8Array*);
-
- TestInterface2OrUint8Array(const TestInterface2OrUint8Array&);
- ~TestInterface2OrUint8Array();
- TestInterface2OrUint8Array& operator=(const TestInterface2OrUint8Array&);
- DECLARE_TRACE();
-
-private:
- enum SpecificTypes {
- SpecificTypeNone,
- SpecificTypeTestInterface2,
- SpecificTypeUint8Array,
- };
- SpecificTypes m_type;
-
- Member<TestInterface2> m_testInterface2;
- Member<DOMUint8Array> m_uint8Array;
-
- friend CORE_EXPORT v8::Local<v8::Value> toV8(const TestInterface2OrUint8Array&, v8::Local<v8::Object>, v8::Isolate*);
-};
-
-class V8TestInterface2OrUint8Array final {
-public:
- CORE_EXPORT static void toImpl(v8::Isolate*, v8::Local<v8::Value>, TestInterface2OrUint8Array&, UnionTypeConversionMode, ExceptionState&);
-};
-
-CORE_EXPORT v8::Local<v8::Value> toV8(const TestInterface2OrUint8Array&, v8::Local<v8::Object>, v8::Isolate*);
-
-template <class CallbackInfo>
-inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterface2OrUint8Array& impl)
-{
- v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
-}
-
-template <>
-struct NativeValueTraits<TestInterface2OrUint8Array> {
- CORE_EXPORT static TestInterface2OrUint8Array nativeValue(v8::Isolate*, v8::Local<v8::Value>, ExceptionState&);
-};
-
-} // namespace blink
-
-// We need to set canInitializeWithMemset=true because HeapVector supports
-// items that can initialize with memset or have a vtable. It is safe to
-// set canInitializeWithMemset=true for a union type object in practice.
-// See https://codereview.chromium.org/1118993002/#msg5 for more details.
-WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(blink::TestInterface2OrUint8Array);
-
-#endif // TestInterface2OrUint8Array_h

Powered by Google App Engine
This is Rietveld 408576698