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

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

Issue 2654703002: Rename showVirtualKeyboard() to showVirtualKeyboardOnElementFocus(). (Closed)
Patch Set: Fixing Android-specific compile error in render_widget_input_handler.cc Created 3 years, 10 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
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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 void handleKeyboardEventOnTextField(HTMLInputElement&, 192 void handleKeyboardEventOnTextField(HTMLInputElement&,
193 KeyboardEvent&) override; 193 KeyboardEvent&) override;
194 void didChangeValueInTextField(HTMLFormControlElement&) override; 194 void didChangeValueInTextField(HTMLFormControlElement&) override;
195 void didEndEditingOnTextField(HTMLInputElement&) override; 195 void didEndEditingOnTextField(HTMLInputElement&) override;
196 void openTextDataListChooser(HTMLInputElement&) override; 196 void openTextDataListChooser(HTMLInputElement&) override;
197 void textFieldDataListChanged(HTMLInputElement&) override; 197 void textFieldDataListChanged(HTMLInputElement&) override;
198 void ajaxSucceeded(LocalFrame*) override; 198 void ajaxSucceeded(LocalFrame*) override;
199 199
200 void didCancelCompositionOnSelectionChange() override; 200 void didCancelCompositionOnSelectionChange() override;
201 void resetInputMethod() override; 201 void resetInputMethod() override;
202 void showVirtualKeyboard() override; 202 void showVirtualKeyboardOnElementFocus() override;
203 203
204 void registerViewportLayers() const override; 204 void registerViewportLayers() const override;
205 205
206 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; 206 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override;
207 void onMouseDown(Node*) override; 207 void onMouseDown(Node*) override;
208 void didUpdateBrowserControls() const override; 208 void didUpdateBrowserControls() const override;
209 209
210 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override; 210 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override;
211 FloatSize elasticOverscroll() const override; 211 FloatSize elasticOverscroll() const override;
212 212
(...skipping 27 matching lines...) Expand all
240 240
241 DEFINE_TYPE_CASTS(ChromeClientImpl, 241 DEFINE_TYPE_CASTS(ChromeClientImpl,
242 ChromeClient, 242 ChromeClient,
243 client, 243 client,
244 client->isChromeClientImpl(), 244 client->isChromeClientImpl(),
245 client.isChromeClientImpl()); 245 client.isChromeClientImpl());
246 246
247 } // namespace blink 247 } // namespace blink
248 248
249 #endif 249 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/page/ChromeClient.h ('k') | third_party/WebKit/Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698