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

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

Issue 133443011: Add text field change handling for autofill preview in textarea element. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Wrap text 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
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 class ColorChooserClient; 53 class ColorChooserClient;
54 class DateTimeChooser; 54 class DateTimeChooser;
55 class DateTimeChooserClient; 55 class DateTimeChooserClient;
56 class Element; 56 class Element;
57 class FileChooser; 57 class FileChooser;
58 class FloatRect; 58 class FloatRect;
59 class LocalFrame; 59 class LocalFrame;
60 class GraphicsLayer; 60 class GraphicsLayer;
61 class GraphicsLayerFactory; 61 class GraphicsLayerFactory;
62 class HitTestResult; 62 class HitTestResult;
63 class HTMLFormControlElement;
63 class HTMLInputElement; 64 class HTMLInputElement;
64 class IntRect; 65 class IntRect;
65 class Node; 66 class Node;
66 class Page; 67 class Page;
67 class PagePopup; 68 class PagePopup;
68 class PagePopupClient; 69 class PagePopupClient;
69 class PagePopupDriver; 70 class PagePopupDriver;
70 class PopupMenuClient; 71 class PopupMenuClient;
71 class SecurityOrigin; 72 class SecurityOrigin;
72 class Widget; 73 class Widget;
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 virtual bool isSVGImageChromeClient() const { return false; } 240 virtual bool isSVGImageChromeClient() const { return false; }
240 241
241 virtual bool requestPointerLock() { return false; } 242 virtual bool requestPointerLock() { return false; }
242 virtual void requestPointerUnlock() { } 243 virtual void requestPointerUnlock() { }
243 244
244 virtual FloatSize minimumWindowSize() const { return FloatSize(100, 100); }; 245 virtual FloatSize minimumWindowSize() const { return FloatSize(100, 100); };
245 246
246 virtual bool isChromeClientImpl() const { return false; } 247 virtual bool isChromeClientImpl() const { return false; }
247 248
248 virtual void didAssociateFormControls(const Vector<RefPtr<Element> >&) { }; 249 virtual void didAssociateFormControls(const Vector<RefPtr<Element> >&) { };
249 virtual void didChangeValueInTextField(HTMLInputElement&) { } 250 virtual void didChangeValueInTextField(HTMLFormControlElement&) { }
250 virtual void didEndEditingOnTextField(HTMLInputElement&) { } 251 virtual void didEndEditingOnTextField(HTMLInputElement&) { }
251 virtual void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent &) { } 252 virtual void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent &) { }
252 253
253 // FIXME: Remove this method once we have input routing in the browser 254 // FIXME: Remove this method once we have input routing in the browser
254 // process. See http://crbug.com/339659. 255 // process. See http://crbug.com/339659.
255 virtual void forwardInputEvent(WebCore::Document*, WebCore::Event*) { } 256 virtual void forwardInputEvent(WebCore::Document*, WebCore::Event*) { }
256 257
257 // Input mehtod editor related functions. 258 // Input mehtod editor related functions.
258 virtual void didCancelCompositionOnSelectionChange() { } 259 virtual void didCancelCompositionOnSelectionChange() { }
259 virtual void willSetInputMethodState() { } 260 virtual void willSetInputMethodState() { }
260 261
261 protected: 262 protected:
262 virtual ~ChromeClient() { } 263 virtual ~ChromeClient() { }
263 }; 264 };
264 265
265 } 266 }
266 #endif // ChromeClient_h 267 #endif // ChromeClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698