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

Unified Diff: Source/bindings/core/v8/V8EventListenerList.h

Issue 877613003: V8EventListenerList should use its own hidden name, otherwise the hidden name conflicts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 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
« no previous file with comments | « LayoutTests/webaudio/audiocontext-listener-should-not-crash-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/V8EventListenerList.h
diff --git a/Source/bindings/core/v8/V8EventListenerList.h b/Source/bindings/core/v8/V8EventListenerList.h
index 5420849219ea159e8f6d048ce22c0b07da9fd68d..9a40db3214acaa4849faa4650e2d216910941f51 100644
--- a/Source/bindings/core/v8/V8EventListenerList.h
+++ b/Source/bindings/core/v8/V8EventListenerList.h
@@ -79,7 +79,7 @@ private:
static inline v8::Handle<v8::String> getHiddenProperty(bool isAttribute, v8::Isolate* isolate)
{
- return isAttribute ? v8AtomicString(isolate, "attributeListener") : v8AtomicString(isolate, "listener");
+ return isAttribute ? v8AtomicString(isolate, "EventListenerList::attributeListener") : v8AtomicString(isolate, "EventListenerList::listener");
}
};
« no previous file with comments | « LayoutTests/webaudio/audiocontext-listener-should-not-crash-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698