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

Unified Diff: Source/bindings/core/v8/custom/V8EventCustom.cpp

Issue 537403002: bindings: Renames from/toInternalPointer, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. 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 side-by-side diff with in-line comments
Download patch
Index: Source/bindings/core/v8/custom/V8EventCustom.cpp
diff --git a/Source/bindings/core/v8/custom/V8EventCustom.cpp b/Source/bindings/core/v8/custom/V8EventCustom.cpp
index 37f8d53c60b2fdafe42c3cf7bc219f88b1f20065..ee9eacb138e71b94258f0930b04a0c0de49bf275 100644
--- a/Source/bindings/core/v8/custom/V8EventCustom.cpp
+++ b/Source/bindings/core/v8/custom/V8EventCustom.cpp
@@ -41,7 +41,7 @@ namespace blink {
void V8Event::clipboardDataAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info)
{
- Event* event = V8Event::toNative(info.Holder());
+ Event* event = V8Event::toImpl(info.Holder());
if (event->isClipboardEvent()) {
v8SetReturnValueFast(info, static_cast<ClipboardEvent*>(event)->clipboardData(), event);
« no previous file with comments | « Source/bindings/core/v8/custom/V8ElementCustom.cpp ('k') | Source/bindings/core/v8/custom/V8FileReaderCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698