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

Side by Side Diff: Source/core/html/HTMLSelectElement.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/HTMLSelectElement.h ('k') | Source/core/html/HTMLTextAreaElement.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) 2010 Nokia Corporation and/or its subsidiary(-ies). 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
4 * (C) 1999 Antti Koivisto (koivisto@kde.org) 4 * (C) 1999 Antti Koivisto (koivisto@kde.org)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved.
7 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 7 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
8 * Copyright (C) 2010 Google Inc. All rights reserved. 8 * Copyright (C) 2010 Google Inc. All rights reserved.
9 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 9 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
10 * 10 *
(...skipping 20 matching lines...) Expand all
31 #include "HTMLNames.h" 31 #include "HTMLNames.h"
32 #include "bindings/v8/ExceptionState.h" 32 #include "bindings/v8/ExceptionState.h"
33 #include "bindings/v8/ExceptionStatePlaceholder.h" 33 #include "bindings/v8/ExceptionStatePlaceholder.h"
34 #include "core/accessibility/AXObjectCache.h" 34 #include "core/accessibility/AXObjectCache.h"
35 #include "core/dom/Attribute.h" 35 #include "core/dom/Attribute.h"
36 #include "core/dom/ElementTraversal.h" 36 #include "core/dom/ElementTraversal.h"
37 #include "core/dom/EventNames.h" 37 #include "core/dom/EventNames.h"
38 #include "core/dom/KeyboardEvent.h" 38 #include "core/dom/KeyboardEvent.h"
39 #include "core/dom/MouseEvent.h" 39 #include "core/dom/MouseEvent.h"
40 #include "core/dom/NodeTraversal.h" 40 #include "core/dom/NodeTraversal.h"
41 #include "core/html/FormController.h"
42 #include "core/html/FormDataList.h" 41 #include "core/html/FormDataList.h"
43 #include "core/html/HTMLFormElement.h" 42 #include "core/html/HTMLFormElement.h"
44 #include "core/html/HTMLOptGroupElement.h" 43 #include "core/html/HTMLOptGroupElement.h"
45 #include "core/html/HTMLOptionElement.h" 44 #include "core/html/HTMLOptionElement.h"
46 #include "core/html/HTMLOptionsCollection.h" 45 #include "core/html/HTMLOptionsCollection.h"
46 #include "core/html/forms/FormController.h"
47 #include "core/page/EventHandler.h" 47 #include "core/page/EventHandler.h"
48 #include "core/page/Frame.h" 48 #include "core/page/Frame.h"
49 #include "core/page/Page.h" 49 #include "core/page/Page.h"
50 #include "core/page/SpatialNavigation.h" 50 #include "core/page/SpatialNavigation.h"
51 #include "core/platform/LocalizedStrings.h" 51 #include "core/platform/LocalizedStrings.h"
52 #include "core/platform/PlatformMouseEvent.h" 52 #include "core/platform/PlatformMouseEvent.h"
53 #include "core/rendering/RenderListBox.h" 53 #include "core/rendering/RenderListBox.h"
54 #include "core/rendering/RenderMenuList.h" 54 #include "core/rendering/RenderMenuList.h"
55 #include "core/rendering/RenderTheme.h" 55 #include "core/rendering/RenderTheme.h"
56 56
(...skipping 1515 matching lines...) Expand 10 before | Expand all | Expand 10 after
1572 return true; 1572 return true;
1573 } 1573 }
1574 1574
1575 bool HTMLSelectElement::anonymousIndexedSetterRemove(unsigned index, ExceptionSt ate& es) 1575 bool HTMLSelectElement::anonymousIndexedSetterRemove(unsigned index, ExceptionSt ate& es)
1576 { 1576 {
1577 remove(index); 1577 remove(index);
1578 return true; 1578 return true;
1579 } 1579 }
1580 1580
1581 } // namespace 1581 } // namespace
OLDNEW
« no previous file with comments | « Source/core/html/HTMLSelectElement.h ('k') | Source/core/html/HTMLTextAreaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698