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

Side by Side Diff: Source/web/ChromeClientImpl.h

Issue 203263004: Remove didChangeValueInTextField(HTMLInputElement&) and textFieldDidChange(const WebInputElement&) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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 unified diff | Download patch
« no previous file with comments | « Source/core/page/ChromeClient.h ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 173
174 virtual bool shouldRunModalDialogDuringPageDismissal(const DialogType&, cons t String& dialogMessage, WebCore::Document::PageDismissalType) const OVERRIDE; 174 virtual bool shouldRunModalDialogDuringPageDismissal(const DialogType&, cons t String& dialogMessage, WebCore::Document::PageDismissalType) const OVERRIDE;
175 175
176 virtual bool shouldRubberBandInDirection(WebCore::ScrollDirection) const OVE RRIDE; 176 virtual bool shouldRubberBandInDirection(WebCore::ScrollDirection) const OVE RRIDE;
177 virtual void numWheelEventHandlersChanged(unsigned) OVERRIDE; 177 virtual void numWheelEventHandlersChanged(unsigned) OVERRIDE;
178 178
179 virtual bool requestPointerLock() OVERRIDE; 179 virtual bool requestPointerLock() OVERRIDE;
180 virtual void requestPointerUnlock() OVERRIDE; 180 virtual void requestPointerUnlock() OVERRIDE;
181 181
182 virtual void didAssociateFormControls(const Vector<RefPtr<WebCore::Element> >&) OVERRIDE; 182 virtual void didAssociateFormControls(const Vector<RefPtr<WebCore::Element> >&) OVERRIDE;
183 // FIXME: This function is to be removed once both chromium and blink change s
184 // for BUG332557 are in.
185 virtual void didChangeValueInTextField(WebCore::HTMLInputElement&) OVERRIDE;
186 virtual void didChangeValueInTextField(WebCore::HTMLFormControlElement&) OVE RRIDE; 183 virtual void didChangeValueInTextField(WebCore::HTMLFormControlElement&) OVE RRIDE;
187 virtual void didEndEditingOnTextField(WebCore::HTMLInputElement&) OVERRIDE; 184 virtual void didEndEditingOnTextField(WebCore::HTMLInputElement&) OVERRIDE;
188 virtual void handleKeyboardEventOnTextField(WebCore::HTMLInputElement&, WebC ore::KeyboardEvent&) OVERRIDE; 185 virtual void handleKeyboardEventOnTextField(WebCore::HTMLInputElement&, WebC ore::KeyboardEvent&) OVERRIDE;
189 186
190 // FIXME: Remove this method once we have input routing in the browser 187 // FIXME: Remove this method once we have input routing in the browser
191 // process. See http://crbug.com/339659. 188 // process. See http://crbug.com/339659.
192 virtual void forwardInputEvent(WebCore::Document*, WebCore::Event*) OVERRIDE ; 189 virtual void forwardInputEvent(WebCore::Document*, WebCore::Event*) OVERRIDE ;
193 190
194 virtual void didCancelCompositionOnSelectionChange() OVERRIDE; 191 virtual void didCancelCompositionOnSelectionChange() OVERRIDE;
195 virtual void willSetInputMethodState() OVERRIDE; 192 virtual void willSetInputMethodState() OVERRIDE;
(...skipping 27 matching lines...) Expand all
223 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); 220 explicit NavigatorContentUtilsClientImpl(WebViewImpl*);
224 221
225 WebViewImpl* m_webView; 222 WebViewImpl* m_webView;
226 }; 223 };
227 224
228 DEFINE_TYPE_CASTS(ChromeClientImpl, WebCore::ChromeClient, client, client->isChr omeClientImpl(), client.isChromeClientImpl()); 225 DEFINE_TYPE_CASTS(ChromeClientImpl, WebCore::ChromeClient, client, client->isChr omeClientImpl(), client.isChromeClientImpl());
229 226
230 } // namespace blink 227 } // namespace blink
231 228
232 #endif 229 #endif
OLDNEW
« no previous file with comments | « Source/core/page/ChromeClient.h ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698