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

Side by Side Diff: Source/core/html/shadow/PickerIndicatorElement.h

Issue 17388003: Remove unused includes from core/{editing,fileapi,history,html} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased Created 7 years, 6 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
« no previous file with comments | « Source/core/html/shadow/MediaControls.h ('k') | Source/core/html/shadow/SliderThumbElement.h » ('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 17 matching lines...) Expand all
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef PickerIndicatorElement_h 31 #ifndef PickerIndicatorElement_h
32 #define PickerIndicatorElement_h 32 #define PickerIndicatorElement_h
33 33
34 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) 34 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
35 #include "core/html/HTMLDivElement.h" 35 #include "core/html/HTMLDivElement.h"
36 #include "core/platform/DateTimeChooser.h" 36 #include "core/platform/DateTimeChooser.h"
37 #include "core/platform/DateTimeChooserClient.h" 37 #include "core/platform/DateTimeChooserClient.h"
38 #include <wtf/OwnPtr.h>
39 38
40 namespace WebCore { 39 namespace WebCore {
41 40
42 class HTMLInputElement; 41 class HTMLInputElement;
43 class PagePopup; 42 class PagePopup;
44 43
45 class PickerIndicatorElement FINAL : public HTMLDivElement, public DateTimeChoos erClient { 44 class PickerIndicatorElement FINAL : public HTMLDivElement, public DateTimeChoos erClient {
46 public: 45 public:
47 // PickerIndicatorOwner implementer must call removePickerIndicatorOwner whe n 46 // PickerIndicatorOwner implementer must call removePickerIndicatorOwner whe n
48 // it doesn't handle event, e.g. at destruction. 47 // it doesn't handle event, e.g. at destruction.
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 79
81 inline PickerIndicatorElement* toPickerIndicatorElement(Element* element) 80 inline PickerIndicatorElement* toPickerIndicatorElement(Element* element)
82 { 81 {
83 ASSERT_WITH_SECURITY_IMPLICATION(!element || element->isPickerIndicatorEleme nt()); 82 ASSERT_WITH_SECURITY_IMPLICATION(!element || element->isPickerIndicatorEleme nt());
84 return static_cast<PickerIndicatorElement*>(element); 83 return static_cast<PickerIndicatorElement*>(element);
85 } 84 }
86 85
87 } 86 }
88 #endif 87 #endif
89 #endif 88 #endif
OLDNEW
« no previous file with comments | « Source/core/html/shadow/MediaControls.h ('k') | Source/core/html/shadow/SliderThumbElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698