| 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 24 matching lines...) Expand all Loading... |
| 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/forms/InputTypeNames.h" | 39 #include "core/html/forms/InputTypeNames.h" |
| 40 #include "core/frame/FrameView.h" | 40 #include "core/frame/FrameView.h" |
| 41 #include "core/platform/DateTimeChooserClient.h" | 41 #include "core/platform/DateTimeChooserClient.h" |
| 42 #include "core/rendering/RenderTheme.h" | 42 #include "core/rendering/RenderTheme.h" |
| 43 #include "platform/DateComponents.h" | 43 #include "platform/DateComponents.h" |
| 44 #include "platform/Language.h" | 44 #include "platform/Language.h" |
| 45 #include "platform/NotImplemented.h" | |
| 46 #include "platform/text/PlatformLocale.h" | 45 #include "platform/text/PlatformLocale.h" |
| 47 | 46 |
| 48 #if !ENABLE(CALENDAR_PICKER) | 47 #if !ENABLE(CALENDAR_PICKER) |
| 49 #error "ENABLE_INPUT_MULTIPLE_FIELDS_UI requires ENABLE_CALENDAR_PICKER in Chrom
ium." | 48 #error "ENABLE_INPUT_MULTIPLE_FIELDS_UI requires ENABLE_CALENDAR_PICKER in Chrom
ium." |
| 50 #endif | 49 #endif |
| 51 | 50 |
| 52 using namespace WebCore; | 51 using namespace WebCore; |
| 53 | 52 |
| 54 namespace WebKit { | 53 namespace WebKit { |
| 55 | 54 |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 void DateTimeChooserImpl::didClosePopup() | 183 void DateTimeChooserImpl::didClosePopup() |
| 185 { | 184 { |
| 186 ASSERT(m_client); | 185 ASSERT(m_client); |
| 187 m_popup = 0; | 186 m_popup = 0; |
| 188 m_client->didEndChooser(); | 187 m_client->didEndChooser(); |
| 189 } | 188 } |
| 190 | 189 |
| 191 } // namespace WebKit | 190 } // namespace WebKit |
| 192 | 191 |
| 193 #endif // ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 192 #endif // ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
| OLD | NEW |