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

Side by Side Diff: third_party/WebKit/Source/core/html/forms/MultipleFieldsTemporalInputTypeView.cpp

Issue 2015583003: Remove assorted unnecessary includes in core/layout/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « no previous file | third_party/WebKit/Source/core/layout/BidiRun.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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 27 matching lines...) Expand all
38 #include "core/html/HTMLDataListElement.h" 38 #include "core/html/HTMLDataListElement.h"
39 #include "core/html/HTMLInputElement.h" 39 #include "core/html/HTMLInputElement.h"
40 #include "core/html/HTMLOptionElement.h" 40 #include "core/html/HTMLOptionElement.h"
41 #include "core/html/forms/BaseTemporalInputType.h" 41 #include "core/html/forms/BaseTemporalInputType.h"
42 #include "core/html/forms/DateTimeFieldsState.h" 42 #include "core/html/forms/DateTimeFieldsState.h"
43 #include "core/html/forms/FormController.h" 43 #include "core/html/forms/FormController.h"
44 #include "core/html/shadow/ShadowElementNames.h" 44 #include "core/html/shadow/ShadowElementNames.h"
45 #include "core/layout/LayoutTheme.h" 45 #include "core/layout/LayoutTheme.h"
46 #include "core/page/FocusController.h" 46 #include "core/page/FocusController.h"
47 #include "core/page/Page.h" 47 #include "core/page/Page.h"
48 #include "core/style/ComputedStyle.h"
48 #include "platform/DateComponents.h" 49 #include "platform/DateComponents.h"
49 #include "platform/RuntimeEnabledFeatures.h" 50 #include "platform/RuntimeEnabledFeatures.h"
50 #include "platform/text/DateTimeFormat.h" 51 #include "platform/text/DateTimeFormat.h"
51 #include "platform/text/PlatformLocale.h" 52 #include "platform/text/PlatformLocale.h"
52 #include "wtf/DateMath.h" 53 #include "wtf/DateMath.h"
53 54
54 namespace blink { 55 namespace blink {
55 56
56 class DateTimeFormatValidator : public DateTimeFormat::TokenHandler { 57 class DateTimeFormatValidator : public DateTimeFormat::TokenHandler {
57 public: 58 public:
(...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 } 625 }
625 626
626 AXObject* MultipleFieldsTemporalInputTypeView::popupRootAXObject() 627 AXObject* MultipleFieldsTemporalInputTypeView::popupRootAXObject()
627 { 628 {
628 if (PickerIndicatorElement* picker = pickerIndicatorElement()) 629 if (PickerIndicatorElement* picker = pickerIndicatorElement())
629 return picker->popupRootAXObject(); 630 return picker->popupRootAXObject();
630 return nullptr; 631 return nullptr;
631 } 632 }
632 633
633 } // namespace blink 634 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/BidiRun.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698