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

Unified Diff: Source/WebKit/chromium/src/WebViewImpl.cpp

Issue 68303004: [oilpan] Move EventHandler to the heap (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 1 month 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 | « Source/WebKit/chromium/src/ViewportAnchor.cpp ('k') | Source/core/inspector/InspectorInputAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebKit/chromium/src/WebViewImpl.cpp
diff --git a/Source/WebKit/chromium/src/WebViewImpl.cpp b/Source/WebKit/chromium/src/WebViewImpl.cpp
index 7f3e8b25f0da51af7aec2d743f7f208c64aa7917..cade8b0c386547df2c8cc038d9c7fdcb27c512dc 100644
--- a/Source/WebKit/chromium/src/WebViewImpl.cpp
+++ b/Source/WebKit/chromium/src/WebViewImpl.cpp
@@ -971,7 +971,7 @@ bool WebViewImpl::handleKeyEvent(const WebKeyboardEvent& event)
if (!frame)
return false;
- EventHandler* handler = frame->eventHandler();
+ HANDLE(EventHandler) handler = frame->eventHandler();
if (!handler)
return keyEventDefault(event);
@@ -1083,7 +1083,7 @@ bool WebViewImpl::handleCharEvent(const WebKeyboardEvent& event)
if (!frame)
return suppress;
- EventHandler* handler = frame->eventHandler();
+ HANDLE(EventHandler) handler = frame->eventHandler();
if (!handler)
return suppress || keyEventDefault(event);
« no previous file with comments | « Source/WebKit/chromium/src/ViewportAnchor.cpp ('k') | Source/core/inspector/InspectorInputAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698