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

Side by Side Diff: Source/core/html/HTMLInputElement.cpp

Issue 24246011: Move form-related 78 files to core/html/forms/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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/core/html/HTMLInputElement.h ('k') | Source/core/html/HTMLSelectElement.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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) 7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org)
8 * Copyright (C) 2010 Google Inc. All rights reserved. 8 * Copyright (C) 2010 Google Inc. All rights reserved.
9 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 9 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
10 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 10 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 #include "core/dom/MouseEvent.h" 44 #include "core/dom/MouseEvent.h"
45 #include "core/dom/ScopedEventQueue.h" 45 #include "core/dom/ScopedEventQueue.h"
46 #include "core/dom/TouchController.h" 46 #include "core/dom/TouchController.h"
47 #include "core/dom/TouchEvent.h" 47 #include "core/dom/TouchEvent.h"
48 #include "core/dom/shadow/ElementShadow.h" 48 #include "core/dom/shadow/ElementShadow.h"
49 #include "core/dom/shadow/InsertionPoint.h" 49 #include "core/dom/shadow/InsertionPoint.h"
50 #include "core/dom/shadow/ShadowRoot.h" 50 #include "core/dom/shadow/ShadowRoot.h"
51 #include "core/editing/Editor.h" 51 #include "core/editing/Editor.h"
52 #include "core/editing/FrameSelection.h" 52 #include "core/editing/FrameSelection.h"
53 #include "core/fileapi/FileList.h" 53 #include "core/fileapi/FileList.h"
54 #include "core/html/ColorInputType.h"
55 #include "core/html/FileInputType.h"
56 #include "core/html/FormController.h"
57 #include "core/html/HTMLCollection.h" 54 #include "core/html/HTMLCollection.h"
58 #include "core/html/HTMLDataListElement.h" 55 #include "core/html/HTMLDataListElement.h"
59 #include "core/html/HTMLFormElement.h" 56 #include "core/html/HTMLFormElement.h"
60 #include "core/html/HTMLImageLoader.h" 57 #include "core/html/HTMLImageLoader.h"
61 #include "core/html/HTMLOptionElement.h" 58 #include "core/html/HTMLOptionElement.h"
62 #include "core/html/InputType.h" 59 #include "core/html/forms/ColorInputType.h"
63 #include "core/html/SearchInputType.h" 60 #include "core/html/forms/FileInputType.h"
61 #include "core/html/forms/FormController.h"
62 #include "core/html/forms/InputType.h"
63 #include "core/html/forms/SearchInputType.h"
64 #include "core/html/parser/HTMLParserIdioms.h" 64 #include "core/html/parser/HTMLParserIdioms.h"
65 #include "core/page/Frame.h" 65 #include "core/page/Frame.h"
66 #include "core/page/FrameView.h" 66 #include "core/page/FrameView.h"
67 #include "core/page/UseCounter.h" 67 #include "core/page/UseCounter.h"
68 #include "core/platform/DateTimeChooser.h" 68 #include "core/platform/DateTimeChooser.h"
69 #include "core/platform/Language.h" 69 #include "core/platform/Language.h"
70 #include "core/platform/LocalizedStrings.h" 70 #include "core/platform/LocalizedStrings.h"
71 #include "core/platform/PlatformMouseEvent.h" 71 #include "core/platform/PlatformMouseEvent.h"
72 #include "core/rendering/RenderTextControlSingleLine.h" 72 #include "core/rendering/RenderTextControlSingleLine.h"
73 #include "core/rendering/RenderTheme.h" 73 #include "core/rendering/RenderTheme.h"
(...skipping 1805 matching lines...) Expand 10 before | Expand all | Expand 10 after
1879 } 1879 }
1880 1880
1881 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) 1881 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
1882 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() 1882 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer()
1883 { 1883 {
1884 return m_inputTypeView->customStyleForRenderer(originalStyleForRenderer()); 1884 return m_inputTypeView->customStyleForRenderer(originalStyleForRenderer());
1885 } 1885 }
1886 #endif 1886 #endif
1887 1887
1888 } // namespace 1888 } // namespace
OLDNEW
« no previous file with comments | « Source/core/html/HTMLInputElement.h ('k') | Source/core/html/HTMLSelectElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698