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

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

Issue 2736413002: [Android] Restart input only once on focus change (Closed)
Patch Set: Rebase Created 3 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
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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 void didAssociateFormControlsAfterLoad(LocalFrame*) override; 190 void didAssociateFormControlsAfterLoad(LocalFrame*) override;
191 void handleKeyboardEventOnTextField(HTMLInputElement&, 191 void handleKeyboardEventOnTextField(HTMLInputElement&,
192 KeyboardEvent&) override; 192 KeyboardEvent&) override;
193 void didChangeValueInTextField(HTMLFormControlElement&) override; 193 void didChangeValueInTextField(HTMLFormControlElement&) override;
194 void didEndEditingOnTextField(HTMLInputElement&) override; 194 void didEndEditingOnTextField(HTMLInputElement&) override;
195 void openTextDataListChooser(HTMLInputElement&) override; 195 void openTextDataListChooser(HTMLInputElement&) override;
196 void textFieldDataListChanged(HTMLInputElement&) override; 196 void textFieldDataListChanged(HTMLInputElement&) override;
197 void ajaxSucceeded(LocalFrame*) override; 197 void ajaxSucceeded(LocalFrame*) override;
198 198
199 void didCancelCompositionOnSelectionChange() override; 199 void didCancelCompositionOnSelectionChange() override;
200 void resetInputMethod() override;
201 void showVirtualKeyboard() override; 200 void showVirtualKeyboard() override;
202 201
203 void registerViewportLayers() const override; 202 void registerViewportLayers() const override;
204 203
205 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; 204 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override;
206 void onMouseDown(Node*) override; 205 void onMouseDown(Node*) override;
207 void didUpdateBrowserControls() const override; 206 void didUpdateBrowserControls() const override;
208 207
209 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override; 208 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override;
210 FloatSize elasticOverscroll() const override; 209 FloatSize elasticOverscroll() const override;
(...skipping 28 matching lines...) Expand all
239 238
240 DEFINE_TYPE_CASTS(ChromeClientImpl, 239 DEFINE_TYPE_CASTS(ChromeClientImpl,
241 ChromeClient, 240 ChromeClient,
242 client, 241 client,
243 client->isChromeClientImpl(), 242 client->isChromeClientImpl(),
244 client.isChromeClientImpl()); 243 client.isChromeClientImpl());
245 244
246 } // namespace blink 245 } // namespace blink
247 246
248 #endif 247 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/editing/InputMethodController.cpp ('k') | third_party/WebKit/Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698