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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/ScriptEventListener.h

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 25 matching lines...) Expand all
36 #include "wtf/PassRefPtr.h" 36 #include "wtf/PassRefPtr.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 class EventListener; 40 class EventListener;
41 class ExecutiionContext; 41 class ExecutiionContext;
42 class LocalFrame; 42 class LocalFrame;
43 class Node; 43 class Node;
44 class QualifiedName; 44 class QualifiedName;
45 45
46 RawPtr<V8LazyEventListener> createAttributeEventListener(Node*, const QualifiedN ame&, const AtomicString& value, const AtomicString& eventParameterName); 46 V8LazyEventListener* createAttributeEventListener(Node*, const QualifiedName&, c onst AtomicString& value, const AtomicString& eventParameterName);
47 RawPtr<V8LazyEventListener> createAttributeEventListener(LocalFrame*, const Qual ifiedName&, const AtomicString& value, const AtomicString& eventParameterName); 47 V8LazyEventListener* createAttributeEventListener(LocalFrame*, const QualifiedNa me&, const AtomicString& value, const AtomicString& eventParameterName);
48 v8::Local<v8::Object> eventListenerHandler(ExecutionContext*, EventListener*); 48 v8::Local<v8::Object> eventListenerHandler(ExecutionContext*, EventListener*);
49 v8::Local<v8::Function> eventListenerEffectiveFunction(v8::Isolate*, v8::Local<v 8::Object> handler); 49 v8::Local<v8::Function> eventListenerEffectiveFunction(v8::Isolate*, v8::Local<v 8::Object> handler);
50 void getFunctionLocation(v8::Local<v8::Function>, String& scriptId, int& lineNum ber, int& columnNumber); 50 void getFunctionLocation(v8::Local<v8::Function>, String& scriptId, int& lineNum ber, int& columnNumber);
51 51
52 } // namespace blink 52 } // namespace blink
53 53
54 #endif // ScriptEventListener_h 54 #endif // ScriptEventListener_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698