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

Side by Side Diff: Source/bindings/core/v8/custom/V8MessageEventCustom.cpp

Issue 531183003: bindings: Retires manual dispatching in createV8{HTML,SVG}Wrapper, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed bindings/modules/v8/custom/custom.gni Created 6 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 24 matching lines...) Expand all
35 #include "bindings/core/v8/V8Binding.h" 35 #include "bindings/core/v8/V8Binding.h"
36 #include "bindings/core/v8/V8Blob.h" 36 #include "bindings/core/v8/V8Blob.h"
37 #include "bindings/core/v8/V8HiddenValue.h" 37 #include "bindings/core/v8/V8HiddenValue.h"
38 #include "bindings/core/v8/V8MessagePort.h" 38 #include "bindings/core/v8/V8MessagePort.h"
39 #include "bindings/core/v8/V8Window.h" 39 #include "bindings/core/v8/V8Window.h"
40 #include "bindings/core/v8/custom/V8ArrayBufferCustom.h" 40 #include "bindings/core/v8/custom/V8ArrayBufferCustom.h"
41 #include "core/events/MessageEvent.h" 41 #include "core/events/MessageEvent.h"
42 42
43 namespace blink { 43 namespace blink {
44 44
45 // Ensures a wrapper is created for the data to return now so that V8 knows how
46 // much memory is used via the wrapper. To keep the wrapper alive, it's set to
47 // the wrapper of the MessageEvent as a hidden value.
48 static void ensureWrapperCreatedAndAssociated(MessageEvent* eventImpl, v8::Handl e<v8::Object> eventWrapper, v8::Isolate* isolate)
haraken 2014/09/04 02:17:46 Why do we have the setHiddenValue code in both V8M
Yuki 2014/09/04 04:47:29 It's because we have two paths to create wrappers.
49 {
50 switch (eventImpl->dataType()) {
51 case MessageEvent::DataTypeScriptValue:
52 case MessageEvent::DataTypeSerializedScriptValue:
53 break;
54 case MessageEvent::DataTypeString: {
55 String stringValue = eventImpl->dataAsString();
56 V8HiddenValue::setHiddenValue(isolate, eventWrapper, V8HiddenValue::stri ngData(isolate), v8String(isolate, stringValue));
57 break;
58 }
59 case MessageEvent::DataTypeBlob:
60 break;
61 case MessageEvent::DataTypeArrayBuffer:
62 V8HiddenValue::setHiddenValue(isolate, eventWrapper, V8HiddenValue::arra yBufferData(isolate), toV8(eventImpl->dataAsArrayBuffer(), eventWrapper, isolate ));
63 break;
64 }
65 }
66
67 v8::Handle<v8::Object> wrap(MessageEvent* impl, v8::Handle<v8::Object> creationC ontext, v8::Isolate* isolate)
68 {
69 ASSERT(impl);
70 ASSERT(!DOMDataStore::containsWrapper<V8MessageEvent>(impl, isolate));
71 v8::Handle<v8::Object> wrapper = V8MessageEvent::createWrapper(impl, creatio nContext, isolate);
72 ensureWrapperCreatedAndAssociated(impl, wrapper, isolate);
73 return wrapper;
74 }
75
76 void V8MessageEvent::dataAttributeGetterCustom(const v8::PropertyCallbackInfo<v8 ::Value>& info) 45 void V8MessageEvent::dataAttributeGetterCustom(const v8::PropertyCallbackInfo<v8 ::Value>& info)
77 { 46 {
78 MessageEvent* event = V8MessageEvent::toNative(info.Holder()); 47 MessageEvent* event = V8MessageEvent::toNative(info.Holder());
79 48
80 v8::Handle<v8::Value> result; 49 v8::Handle<v8::Value> result;
81 switch (event->dataType()) { 50 switch (event->dataType()) {
82 case MessageEvent::DataTypeScriptValue: { 51 case MessageEvent::DataTypeScriptValue: {
83 result = V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Holder(), V8HiddenValue::data(info.GetIsolate())); 52 result = V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Holder(), V8HiddenValue::data(info.GetIsolate()));
84 if (result.IsEmpty()) { 53 if (result.IsEmpty()) {
85 if (!event->dataAsSerializedScriptValue()) { 54 if (!event->dataAsSerializedScriptValue()) {
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 event->initMessageEvent(typeArg, canBubbleArg, cancelableArg, originArg, las tEventIdArg, sourceArg, portArray.release()); 124 event->initMessageEvent(typeArg, canBubbleArg, cancelableArg, originArg, las tEventIdArg, sourceArg, portArray.release());
156 125
157 if (!dataArg.IsEmpty()) { 126 if (!dataArg.IsEmpty()) {
158 V8HiddenValue::setHiddenValue(info.GetIsolate(), info.Holder(), V8Hidden Value::data(info.GetIsolate()), dataArg); 127 V8HiddenValue::setHiddenValue(info.GetIsolate(), info.Holder(), V8Hidden Value::data(info.GetIsolate()), dataArg);
159 if (DOMWrapperWorld::current(info.GetIsolate()).isIsolatedWorld()) 128 if (DOMWrapperWorld::current(info.GetIsolate()).isIsolatedWorld())
160 event->setSerializedData(SerializedScriptValue::createAndSwallowExce ptions(dataArg, info.GetIsolate())); 129 event->setSerializedData(SerializedScriptValue::createAndSwallowExce ptions(dataArg, info.GetIsolate()));
161 } 130 }
162 } 131 }
163 132
164 } // namespace blink 133 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698