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

Side by Side Diff: third_party/WebKit/Source/core/page/ChromeClient.h

Issue 2378503002: Observe visibility of password inputs, for HTTP-bad phase 1 (Closed)
Patch Set: fix components_unittests build failure Created 4 years, 2 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) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, 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 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 253
254 virtual bool isChromeClientImpl() const { return false; } 254 virtual bool isChromeClientImpl() const { return false; }
255 255
256 virtual void didAssociateFormControlsAfterLoad(LocalFrame*) { } 256 virtual void didAssociateFormControlsAfterLoad(LocalFrame*) { }
257 virtual void didChangeValueInTextField(HTMLFormControlElement&) { } 257 virtual void didChangeValueInTextField(HTMLFormControlElement&) { }
258 virtual void didEndEditingOnTextField(HTMLInputElement&) { } 258 virtual void didEndEditingOnTextField(HTMLInputElement&) { }
259 virtual void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent &) { } 259 virtual void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent &) { }
260 virtual void textFieldDataListChanged(HTMLInputElement&) { } 260 virtual void textFieldDataListChanged(HTMLInputElement&) { }
261 virtual void ajaxSucceeded(LocalFrame*) { } 261 virtual void ajaxSucceeded(LocalFrame*) { }
262 262
263 virtual void passwordFieldBecameVisible(HTMLInputElement&) {}
264
263 // Input method editor related functions. 265 // Input method editor related functions.
264 virtual void didCancelCompositionOnSelectionChange() { } 266 virtual void didCancelCompositionOnSelectionChange() { }
265 virtual void willSetInputMethodState() { } 267 virtual void willSetInputMethodState() { }
266 virtual void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) { } 268 virtual void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) { }
267 virtual void showImeIfNeeded() { } 269 virtual void showImeIfNeeded() { }
268 270
269 virtual void registerViewportLayers() const { } 271 virtual void registerViewportLayers() const { }
270 272
271 virtual void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) { } 273 virtual void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) { }
272 274
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 312
311 LayoutPoint m_lastToolTipPoint; 313 LayoutPoint m_lastToolTipPoint;
312 String m_lastToolTipText; 314 String m_lastToolTipText;
313 315
314 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); 316 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood);
315 }; 317 };
316 318
317 } // namespace blink 319 } // namespace blink
318 320
319 #endif // ChromeClient_h 321 #endif // ChromeClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698