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 28 matching lines...) Expand all Loading... |
39 #include "core/dom/Document.h" | 39 #include "core/dom/Document.h" |
40 #include "core/dom/Fullscreen.h" | 40 #include "core/dom/Fullscreen.h" |
41 #include "core/dom/Node.h" | 41 #include "core/dom/Node.h" |
42 #include "core/events/KeyboardEvent.h" | 42 #include "core/events/KeyboardEvent.h" |
43 #include "core/events/MouseEvent.h" | 43 #include "core/events/MouseEvent.h" |
44 #include "core/events/WheelEvent.h" | 44 #include "core/events/WheelEvent.h" |
45 #include "core/frame/Console.h" | 45 #include "core/frame/Console.h" |
46 #include "core/frame/FrameView.h" | 46 #include "core/frame/FrameView.h" |
47 #include "core/frame/Settings.h" | 47 #include "core/frame/Settings.h" |
48 #include "core/html/HTMLInputElement.h" | 48 #include "core/html/HTMLInputElement.h" |
| 49 #include "core/html/forms/ColorChooser.h" |
| 50 #include "core/html/forms/ColorChooserClient.h" |
| 51 #include "core/html/forms/DateTimeChooser.h" |
49 #include "core/loader/DocumentLoader.h" | 52 #include "core/loader/DocumentLoader.h" |
50 #include "core/loader/FrameLoadRequest.h" | 53 #include "core/loader/FrameLoadRequest.h" |
51 #include "core/page/Page.h" | 54 #include "core/page/Page.h" |
52 #include "core/page/PagePopupDriver.h" | 55 #include "core/page/PagePopupDriver.h" |
53 #include "core/page/WindowFeatures.h" | 56 #include "core/page/WindowFeatures.h" |
54 #include "core/rendering/HitTestResult.h" | 57 #include "core/rendering/HitTestResult.h" |
55 #include "core/rendering/RenderPart.h" | 58 #include "core/rendering/RenderPart.h" |
56 #include "core/rendering/RenderWidget.h" | 59 #include "core/rendering/RenderWidget.h" |
57 #include "platform/ColorChooser.h" | |
58 #include "platform/ColorChooserClient.h" | |
59 #include "platform/Cursor.h" | 60 #include "platform/Cursor.h" |
60 #include "platform/DateTimeChooser.h" | |
61 #include "platform/FileChooser.h" | 61 #include "platform/FileChooser.h" |
62 #include "platform/NotImplemented.h" | 62 #include "platform/NotImplemented.h" |
63 #include "platform/PlatformScreen.h" | 63 #include "platform/PlatformScreen.h" |
64 #include "platform/RuntimeEnabledFeatures.h" | 64 #include "platform/RuntimeEnabledFeatures.h" |
65 #include "platform/exported/WrappedResourceRequest.h" | 65 #include "platform/exported/WrappedResourceRequest.h" |
66 #include "platform/geometry/FloatRect.h" | 66 #include "platform/geometry/FloatRect.h" |
67 #include "platform/geometry/IntRect.h" | 67 #include "platform/geometry/IntRect.h" |
68 #include "platform/graphics/GraphicsLayer.h" | 68 #include "platform/graphics/GraphicsLayer.h" |
69 #include "platform/weborigin/SecurityOrigin.h" | 69 #include "platform/weborigin/SecurityOrigin.h" |
70 #include "public/platform/Platform.h" | 70 #include "public/platform/Platform.h" |
(...skipping 792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
863 m_webView->autofillClient()->textFieldDidEndEditing(WebInputElement(&inp
utElement)); | 863 m_webView->autofillClient()->textFieldDidEndEditing(WebInputElement(&inp
utElement)); |
864 } | 864 } |
865 | 865 |
866 void ChromeClientImpl::openTextDataListChooser(HTMLInputElement& input) | 866 void ChromeClientImpl::openTextDataListChooser(HTMLInputElement& input) |
867 { | 867 { |
868 if (m_webView->autofillClient()) | 868 if (m_webView->autofillClient()) |
869 m_webView->autofillClient()->openTextDataListChooser(WebInputElement(&in
put)); | 869 m_webView->autofillClient()->openTextDataListChooser(WebInputElement(&in
put)); |
870 } | 870 } |
871 | 871 |
872 } // namespace blink | 872 } // namespace blink |
OLD | NEW |