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

Unified Diff: third_party/WebKit/Source/bindings/modules/v8/V8ServiceWorkerMessageEventInternal.h

Issue 2837353003: Remove remaining traces of ServiceWorkerMessageEvent (Closed)
Patch Set: include V8PrivateProperty.h Created 3 years, 8 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/modules/v8/V8ServiceWorkerMessageEventInternal.h
diff --git a/third_party/WebKit/Source/bindings/modules/v8/V8ServiceWorkerMessageEventInternal.h b/third_party/WebKit/Source/bindings/modules/v8/V8ServiceWorkerMessageEventInternal.h
deleted file mode 100644
index 64caee6b9bbc31caeb076bed92f325a337a21dd1..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/bindings/modules/v8/V8ServiceWorkerMessageEventInternal.h
+++ /dev/null
@@ -1,112 +0,0 @@
-// Copyright 2016 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.
-
-#ifndef V8ServiceWorkerMessageEventInternal_h
-#define V8ServiceWorkerMessageEventInternal_h
-
-#include "bindings/core/v8/SerializedScriptValue.h"
-#include "bindings/core/v8/SerializedScriptValueFactory.h"
-#include "bindings/core/v8/V8PrivateProperty.h"
-
-namespace blink {
-
-class V8ServiceWorkerMessageEventInternal {
- public:
- template <typename EventType, typename DictType>
- static void ConstructorCustom(const v8::FunctionCallbackInfo<v8::Value>&);
-
- template <typename EventType>
- static void DataAttributeGetterCustom(
- const v8::FunctionCallbackInfo<v8::Value>&);
-};
-
-template <typename EventType, typename DictType>
-void V8ServiceWorkerMessageEventInternal::ConstructorCustom(
- const v8::FunctionCallbackInfo<v8::Value>& info) {
- v8::Isolate* isolate = info.GetIsolate();
- ExceptionState exception_state(
- isolate, ExceptionState::kConstructionContext,
- V8TypeOf<EventType>::Type::wrapperTypeInfo.interface_name);
- if (UNLIKELY(info.Length() < 1)) {
- exception_state.ThrowTypeError(
- ExceptionMessages::NotEnoughArguments(1, info.Length()));
- return;
- }
-
- V8StringResource<> type = info[0];
- if (!type.Prepare())
- return;
-
- DictType event_init_dict;
- if (!IsUndefinedOrNull(info[1])) {
- if (!info[1]->IsObject()) {
- exception_state.ThrowTypeError(
- "parameter 2 ('eventInitDict') is not an object.");
- return;
- }
- V8TypeOf<DictType>::Type::toImpl(isolate, info[1], event_init_dict,
- exception_state);
- if (exception_state.HadException())
- return;
- }
-
- EventType* impl = EventType::Create(type, event_init_dict);
- v8::Local<v8::Object> wrapper = info.Holder();
- wrapper = impl->AssociateWithWrapper(
- isolate, &V8TypeOf<EventType>::Type::wrapperTypeInfo, wrapper);
-
- // TODO(bashi): Workaround for http://crbug.com/529941. We need to store
- // |data| as a private value to avoid cyclic references.
- if (event_init_dict.hasData()) {
- v8::Local<v8::Value> v8_data = event_init_dict.data().V8Value();
- V8PrivateProperty::GetMessageEventCachedData(isolate).Set(wrapper, v8_data);
- if (DOMWrapperWorld::Current(isolate).IsIsolatedWorld()) {
- impl->SetSerializedData(
- SerializedScriptValue::SerializeAndSwallowExceptions(isolate,
- v8_data));
- }
- }
- V8SetReturnValue(info, wrapper);
-}
-
-template <typename EventType>
-void V8ServiceWorkerMessageEventInternal::DataAttributeGetterCustom(
- const v8::FunctionCallbackInfo<v8::Value>& info) {
- EventType* event = V8TypeOf<EventType>::Type::toImpl(info.Holder());
- v8::Isolate* isolate = info.GetIsolate();
- auto private_cached_data =
- V8PrivateProperty::GetMessageEventCachedData(isolate);
- v8::Local<v8::Value> result = private_cached_data.GetOrEmpty(info.Holder());
- if (!result.IsEmpty()) {
- V8SetReturnValue(info, result);
- return;
- }
-
- v8::Local<v8::Value> data;
- if (SerializedScriptValue* serialized_value = event->SerializedData()) {
- MessagePortArray ports = event->ports();
- SerializedScriptValue::DeserializeOptions options;
- options.message_ports = &ports;
- data = serialized_value->Deserialize(isolate, options);
- } else if (DOMWrapperWorld::Current(isolate).IsIsolatedWorld()) {
- v8::Local<v8::Value> main_world_data =
- private_cached_data.GetFromMainWorld(event);
- if (!main_world_data.IsEmpty()) {
- // TODO(bashi): Enter the main world's ScriptState::Scope while
- // serializing the main world's value.
- event->SetSerializedData(
- SerializedScriptValue::SerializeAndSwallowExceptions(
- info.GetIsolate(), main_world_data));
- data = event->SerializedData()->Deserialize(isolate);
- }
- }
- if (data.IsEmpty())
- data = v8::Null(isolate);
- private_cached_data.Set(info.Holder(), data);
- V8SetReturnValue(info, data);
-}
-
-} // namespace blink
-
-#endif // V8ServiceWorkerMessageEventInternal_h

Powered by Google App Engine
This is Rietveld 408576698