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

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

Issue 2189513004: Blink: prevent didAssociateFormControls notification while parsing the document. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename Created 4 years, 4 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 239
240 virtual bool isSVGImageChromeClient() const { return false; } 240 virtual bool isSVGImageChromeClient() const { return false; }
241 241
242 virtual bool requestPointerLock(LocalFrame*) { return false; } 242 virtual bool requestPointerLock(LocalFrame*) { return false; }
243 virtual void requestPointerUnlock(LocalFrame*) {} 243 virtual void requestPointerUnlock(LocalFrame*) {}
244 244
245 virtual IntSize minimumWindowSize() const { return IntSize(100, 100); } 245 virtual IntSize minimumWindowSize() const { return IntSize(100, 100); }
246 246
247 virtual bool isChromeClientImpl() const { return false; } 247 virtual bool isChromeClientImpl() const { return false; }
248 248
249 virtual void didAssociateFormControls(const HeapVector<Member<Element>>&, Lo calFrame*) { } 249 virtual void didAssociateFormControlsAfterLoad(LocalFrame*) { }
250 virtual void didChangeValueInTextField(HTMLFormControlElement&) { } 250 virtual void didChangeValueInTextField(HTMLFormControlElement&) { }
251 virtual void didEndEditingOnTextField(HTMLInputElement&) { } 251 virtual void didEndEditingOnTextField(HTMLInputElement&) { }
252 virtual void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent &) { } 252 virtual void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent &) { }
253 virtual void textFieldDataListChanged(HTMLInputElement&) { } 253 virtual void textFieldDataListChanged(HTMLInputElement&) { }
254 virtual void ajaxSucceeded(LocalFrame*) { } 254 virtual void ajaxSucceeded(LocalFrame*) { }
255 255
256 // Input method editor related functions. 256 // Input method editor related functions.
257 virtual void didCancelCompositionOnSelectionChange() { } 257 virtual void didCancelCompositionOnSelectionChange() { }
258 virtual void willSetInputMethodState() { } 258 virtual void willSetInputMethodState() { }
259 virtual void didUpdateTextOfFocusedElementByNonUserInput() { } 259 virtual void didUpdateTextOfFocusedElementByNonUserInput() { }
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 301
302 LayoutPoint m_lastToolTipPoint; 302 LayoutPoint m_lastToolTipPoint;
303 String m_lastToolTipText; 303 String m_lastToolTipText;
304 304
305 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); 305 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood);
306 }; 306 };
307 307
308 } // namespace blink 308 } // namespace blink
309 309
310 #endif // ChromeClient_h 310 #endif // ChromeClient_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/EmptyClients.h ('k') | third_party/WebKit/Source/web/ChromeClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698