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

Side by Side Diff: Source/bindings/v8/custom/V8EventTargetCustom.cpp

Issue 26890003: Remove ThreadLocalEventNames (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix build Created 7 years, 2 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
« no previous file with comments | « Source/bindings/v8/custom/V8EventCustom.cpp ('k') | Source/build/scripts/make_names.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 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 19 matching lines...) Expand all
30 30
31 #include "config.h" 31 #include "config.h"
32 #include "V8EventTarget.h" 32 #include "V8EventTarget.h"
33 33
34 #include "EventTargetHeaders.h" 34 #include "EventTargetHeaders.h"
35 #include "EventTargetInterfaces.h" 35 #include "EventTargetInterfaces.h"
36 36
37 namespace WebCore { 37 namespace WebCore {
38 38
39 #define TRY_TO_WRAP_WITH_INTERFACE(interfaceName) \ 39 #define TRY_TO_WRAP_WITH_INTERFACE(interfaceName) \
40 if (eventNames().interfaceFor##interfaceName == desiredInterface) \ 40 if (EventTargetNames::interfaceName == desiredInterface) \
41 return toV8(static_cast<interfaceName*>(impl), creationContext, isolate) ; 41 return toV8(static_cast<interfaceName*>(impl), creationContext, isolate) ;
42 42
43 v8::Handle<v8::Value> toV8(EventTarget* impl, v8::Handle<v8::Object> creationCon text, v8::Isolate* isolate) 43 v8::Handle<v8::Value> toV8(EventTarget* impl, v8::Handle<v8::Object> creationCon text, v8::Isolate* isolate)
44 { 44 {
45 if (!impl) 45 if (!impl)
46 return v8NullWithCheck(isolate); 46 return v8NullWithCheck(isolate);
47 47
48 AtomicString desiredInterface = impl->interfaceName(); 48 AtomicString desiredInterface = impl->interfaceName();
49 EVENT_TARGET_INTERFACES_FOR_EACH(TRY_TO_WRAP_WITH_INTERFACE) 49 EVENT_TARGET_INTERFACES_FOR_EACH(TRY_TO_WRAP_WITH_INTERFACE)
50 50
51 ASSERT_NOT_REACHED(); 51 ASSERT_NOT_REACHED();
52 return v8Undefined(); 52 return v8Undefined();
53 } 53 }
54 54
55 #undef TRY_TO_WRAP_WITH_INTERFACE 55 #undef TRY_TO_WRAP_WITH_INTERFACE
56 56
57 } // namespace WebCore 57 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/bindings/v8/custom/V8EventCustom.cpp ('k') | Source/build/scripts/make_names.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698