OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 18 matching lines...) Expand all Loading... |
29 */ | 29 */ |
30 | 30 |
31 #include "config.h" | 31 #include "config.h" |
32 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 32 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
33 #include "DateTimeChooserImpl.h" | 33 #include "DateTimeChooserImpl.h" |
34 | 34 |
35 #include "CalendarPicker.h" | 35 #include "CalendarPicker.h" |
36 #include "ChromeClientImpl.h" | 36 #include "ChromeClientImpl.h" |
37 #include "PickerCommon.h" | 37 #include "PickerCommon.h" |
38 #include "WebViewImpl.h" | 38 #include "WebViewImpl.h" |
39 #include "core/html/InputTypeNames.h" | 39 #include "core/html/forms/InputTypeNames.h" |
40 #include "core/page/FrameView.h" | 40 #include "core/page/FrameView.h" |
41 #include "core/platform/DateComponents.h" | 41 #include "core/platform/DateComponents.h" |
42 #include "core/platform/DateTimeChooserClient.h" | 42 #include "core/platform/DateTimeChooserClient.h" |
43 #include "core/platform/Language.h" | 43 #include "core/platform/Language.h" |
44 #include "core/platform/NotImplemented.h" | 44 #include "core/platform/NotImplemented.h" |
45 #include "core/platform/text/PlatformLocale.h" | 45 #include "core/platform/text/PlatformLocale.h" |
46 #include "core/rendering/RenderTheme.h" | 46 #include "core/rendering/RenderTheme.h" |
47 #include "public/platform/Platform.h" | 47 #include "public/platform/Platform.h" |
48 #include "public/platform/WebLocalizedString.h" | 48 #include "public/platform/WebLocalizedString.h" |
49 | 49 |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 void DateTimeChooserImpl::didClosePopup() | 187 void DateTimeChooserImpl::didClosePopup() |
188 { | 188 { |
189 ASSERT(m_client); | 189 ASSERT(m_client); |
190 m_popup = 0; | 190 m_popup = 0; |
191 m_client->didEndChooser(); | 191 m_client->didEndChooser(); |
192 } | 192 } |
193 | 193 |
194 } // namespace WebKit | 194 } // namespace WebKit |
195 | 195 |
196 #endif // ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 196 #endif // ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
OLD | NEW |