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

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

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
Index: Source/WebKit/chromium/src/TextFieldDecoratorImpl.cpp
diff --git a/Source/WebKit/chromium/src/TextFieldDecoratorImpl.cpp b/Source/WebKit/chromium/src/TextFieldDecoratorImpl.cpp
index adaaf83388d5de1934f418f8195c6841a48907f0..6ed9b71ff6d0ddf5ac42c60df2389762b3769e0c 100644
--- a/Source/WebKit/chromium/src/TextFieldDecoratorImpl.cpp
+++ b/Source/WebKit/chromium/src/TextFieldDecoratorImpl.cpp
@@ -61,7 +61,7 @@ WebTextFieldDecoratorClient* TextFieldDecoratorImpl::decoratorClient()
return m_client;
}
-bool TextFieldDecoratorImpl::willAddDecorationTo(HTMLInputElement* input)
+bool TextFieldDecoratorImpl::willAddDecorationTo(Handle<HTMLInputElement> input)
{
ASSERT(input);
return m_client->shouldAddDecorationTo(WebInputElement(input));
@@ -126,14 +126,14 @@ CachedImage* TextFieldDecoratorImpl::imageForHoverState()
return m_cachedImageForHoverState.get();
}
-void TextFieldDecoratorImpl::handleClick(HTMLInputElement* input)
+void TextFieldDecoratorImpl::handleClick(Handle<HTMLInputElement> input)
{
ASSERT(input);
WebInputElement webInput(input);
m_client->handleClick(webInput);
}
-void TextFieldDecoratorImpl::willDetach(HTMLInputElement* input)
+void TextFieldDecoratorImpl::willDetach(Handle<HTMLInputElement> input)
{
ASSERT(input);
WebInputElement webInput(input);
« no previous file with comments | « Source/WebKit/chromium/src/TextFieldDecoratorImpl.h ('k') | Source/WebKit/chromium/src/WebFormControlElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698