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

Unified Diff: Source/core/page/ChromeClient.h

Issue 19510005: [oilpan] Completely move HTMLFormControlElement's hierarchy to the managed heap Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 5 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
« no previous file with comments | « Source/core/page/Chrome.cpp ('k') | Source/core/page/DragController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/ChromeClient.h
diff --git a/Source/core/page/ChromeClient.h b/Source/core/page/ChromeClient.h
index f497b085c4929445ca55143c7c4e8958576271b6..39cff89aaa65710337bd872e3734ffdd0036424c 100644
--- a/Source/core/page/ChromeClient.h
+++ b/Source/core/page/ChromeClient.h
@@ -304,9 +304,9 @@ public:
// implementation should return true if it wants to do something in
// addTextFieldDecorationsTo().
// The argument is always non-0.
- virtual bool willAddTextFieldDecorationsTo(HTMLInputElement*) { return false; }
+ virtual bool willAddTextFieldDecorationsTo(Handle<HTMLInputElement>) { return false; }
// The argument is always non-0.
- virtual void addTextFieldDecorationsTo(HTMLInputElement*) { }
+ virtual void addTextFieldDecorationsTo(Handle<HTMLInputElement>) { }
virtual void postAccessibilityNotification(AccessibilityObject*, AXObjectCache::AXNotification) { }
« no previous file with comments | « Source/core/page/Chrome.cpp ('k') | Source/core/page/DragController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698