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

Side by Side Diff: Source/web/DateTimeChooserImpl.cpp

Issue 25195003: Prepare to move core/platform/text into blink_platform.dll (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: re-attempt upload Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « Source/platform/exported/WebString.cpp ('k') | Source/web/EditorClientImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 20 matching lines...) Expand all
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/forms/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 "platform/DateComponents.h"
42 #include "core/platform/DateTimeChooserClient.h" 42 #include "core/platform/DateTimeChooserClient.h"
43 #include "core/platform/Language.h" 43 #include "platform/Language.h"
44 #include "core/platform/NotImplemented.h" 44 #include "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
50 #if !ENABLE(CALENDAR_PICKER) 50 #if !ENABLE(CALENDAR_PICKER)
51 #error "ENABLE_INPUT_MULTIPLE_FIELDS_UI requires ENABLE_CALENDAR_PICKER in Chrom ium." 51 #error "ENABLE_INPUT_MULTIPLE_FIELDS_UI requires ENABLE_CALENDAR_PICKER in Chrom ium."
52 #endif 52 #endif
53 53
54 using namespace WebCore; 54 using namespace WebCore;
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
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)
OLDNEW
« no previous file with comments | « Source/platform/exported/WebString.cpp ('k') | Source/web/EditorClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698