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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/V8EventListenerList.cpp

Issue 1883663005: Remove remaining binding layer RawPtr<>s. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
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 18 matching lines...) Expand all
29 */ 29 */
30 30
31 #include "bindings/core/v8/V8EventListenerList.h" 31 #include "bindings/core/v8/V8EventListenerList.h"
32 32
33 #include "bindings/core/v8/V8Binding.h" 33 #include "bindings/core/v8/V8Binding.h"
34 #include "bindings/core/v8/V8Window.h" 34 #include "bindings/core/v8/V8Window.h"
35 #include "bindings/core/v8/V8WorkerGlobalScopeEventListener.h" 35 #include "bindings/core/v8/V8WorkerGlobalScopeEventListener.h"
36 36
37 namespace blink { 37 namespace blink {
38 38
39 RawPtr<EventListener> V8EventListenerList::getEventListener(ScriptState* scriptS tate, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup) 39 EventListener* V8EventListenerList::getEventListener(ScriptState* scriptState, v 8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup)
40 { 40 {
41 if (lookup == ListenerFindOnly) { 41 if (lookup == ListenerFindOnly) {
42 // Used by EventTarget::removeEventListener, specifically 42 // Used by EventTarget::removeEventListener, specifically
43 // EventTargetV8Internal::removeEventListenerMethod 43 // EventTargetV8Internal::removeEventListenerMethod
44 ASSERT(!isAttribute); 44 ASSERT(!isAttribute);
45 return V8EventListenerList::findWrapper(value, scriptState); 45 return V8EventListenerList::findWrapper(value, scriptState);
46 } 46 }
47 if (toDOMWindow(scriptState->context())) 47 if (toDOMWindow(scriptState->context()))
48 return V8EventListenerList::findOrCreateWrapper<V8EventListener>(value, isAttribute, scriptState); 48 return V8EventListenerList::findOrCreateWrapper<V8EventListener>(value, isAttribute, scriptState);
49 return V8EventListenerList::findOrCreateWrapper<V8WorkerGlobalScopeEventList ener>(value, isAttribute, scriptState); 49 return V8EventListenerList::findOrCreateWrapper<V8WorkerGlobalScopeEventList ener>(value, isAttribute, scriptState);
50 } 50 }
51 51
52 } // namespace blink 52 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698