OLD | NEW |
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 16 matching lines...) Expand all Loading... |
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
30 */ | 30 */ |
31 | 31 |
32 #include "config.h" | 32 #include "config.h" |
33 #include "web/ChromeClientImpl.h" | 33 #include "web/ChromeClientImpl.h" |
34 | 34 |
35 #include "bindings/core/v8/ScriptController.h" | 35 #include "bindings/core/v8/ScriptController.h" |
36 #include "core/HTMLNames.h" | 36 #include "core/HTMLNames.h" |
37 #include "core/accessibility/AXObject.h" | |
38 #include "core/accessibility/AXObjectCache.h" | 37 #include "core/accessibility/AXObjectCache.h" |
39 #include "core/dom/Document.h" | 38 #include "core/dom/Document.h" |
40 #include "core/dom/Fullscreen.h" | 39 #include "core/dom/Fullscreen.h" |
41 #include "core/dom/Node.h" | 40 #include "core/dom/Node.h" |
42 #include "core/frame/Console.h" | 41 #include "core/frame/Console.h" |
43 #include "core/frame/FrameView.h" | 42 #include "core/frame/FrameView.h" |
44 #include "core/frame/Settings.h" | 43 #include "core/frame/Settings.h" |
45 #include "core/html/HTMLInputElement.h" | 44 #include "core/html/HTMLInputElement.h" |
46 #include "core/html/forms/ColorChooser.h" | 45 #include "core/html/forms/ColorChooser.h" |
47 #include "core/html/forms/ColorChooserClient.h" | 46 #include "core/html/forms/ColorChooserClient.h" |
48 #include "core/html/forms/DateTimeChooser.h" | 47 #include "core/html/forms/DateTimeChooser.h" |
49 #include "core/loader/DocumentLoader.h" | 48 #include "core/loader/DocumentLoader.h" |
50 #include "core/loader/FrameLoadRequest.h" | 49 #include "core/loader/FrameLoadRequest.h" |
51 #include "core/page/Page.h" | 50 #include "core/page/Page.h" |
52 #include "core/page/PagePopupDriver.h" | 51 #include "core/page/PagePopupDriver.h" |
53 #include "core/page/WindowFeatures.h" | 52 #include "core/page/WindowFeatures.h" |
54 #include "core/rendering/HitTestResult.h" | 53 #include "core/rendering/HitTestResult.h" |
55 #include "core/rendering/RenderPart.h" | 54 #include "core/rendering/RenderPart.h" |
56 #include "core/rendering/compositing/CompositedSelectionBound.h" | 55 #include "core/rendering/compositing/CompositedSelectionBound.h" |
| 56 #include "modules/accessibility/AXObject.h" |
57 #include "platform/Cursor.h" | 57 #include "platform/Cursor.h" |
58 #include "platform/FileChooser.h" | 58 #include "platform/FileChooser.h" |
59 #include "platform/PlatformScreen.h" | 59 #include "platform/PlatformScreen.h" |
60 #include "platform/RuntimeEnabledFeatures.h" | 60 #include "platform/RuntimeEnabledFeatures.h" |
61 #include "platform/exported/WrappedResourceRequest.h" | 61 #include "platform/exported/WrappedResourceRequest.h" |
62 #include "platform/geometry/FloatRect.h" | 62 #include "platform/geometry/FloatRect.h" |
63 #include "platform/geometry/IntRect.h" | 63 #include "platform/geometry/IntRect.h" |
64 #include "platform/graphics/GraphicsLayer.h" | 64 #include "platform/graphics/GraphicsLayer.h" |
65 #include "platform/weborigin/SecurityOrigin.h" | 65 #include "platform/weborigin/SecurityOrigin.h" |
66 #include "public/platform/Platform.h" | 66 #include "public/platform/Platform.h" |
(...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
851 m_webView->autofillClient()->textFieldDidEndEditing(WebInputElement(&inp
utElement)); | 851 m_webView->autofillClient()->textFieldDidEndEditing(WebInputElement(&inp
utElement)); |
852 } | 852 } |
853 | 853 |
854 void ChromeClientImpl::openTextDataListChooser(HTMLInputElement& input) | 854 void ChromeClientImpl::openTextDataListChooser(HTMLInputElement& input) |
855 { | 855 { |
856 if (m_webView->autofillClient()) | 856 if (m_webView->autofillClient()) |
857 m_webView->autofillClient()->openTextDataListChooser(WebInputElement(&in
put)); | 857 m_webView->autofillClient()->openTextDataListChooser(WebInputElement(&in
put)); |
858 } | 858 } |
859 | 859 |
860 } // namespace blink | 860 } // namespace blink |
OLD | NEW |