| 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);
|
|
|