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

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

Issue 15072003: Move StyleResolver and related classes to core/css/resolver (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/html/HTMLDialogElement.cpp ('k') | Source/core/html/HTMLLinkElement.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) 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 16 matching lines...) Expand all
27 */ 27 */
28 28
29 #include "config.h" 29 #include "config.h"
30 #include "core/html/HTMLInputElement.h" 30 #include "core/html/HTMLInputElement.h"
31 31
32 #include "CSSPropertyNames.h" 32 #include "CSSPropertyNames.h"
33 #include "CSSValueKeywords.h" 33 #include "CSSValueKeywords.h"
34 #include "HTMLNames.h" 34 #include "HTMLNames.h"
35 #include "bindings/v8/ScriptEventListener.h" 35 #include "bindings/v8/ScriptEventListener.h"
36 #include "core/accessibility/AXObjectCache.h" 36 #include "core/accessibility/AXObjectCache.h"
37 #include "core/css/StyleResolver.h" 37 #include "core/css/resolver/StyleResolver.h"
38 #include "core/dom/BeforeTextInsertedEvent.h" 38 #include "core/dom/BeforeTextInsertedEvent.h"
39 #include "core/dom/Document.h" 39 #include "core/dom/Document.h"
40 #include "core/dom/ElementShadow.h" 40 #include "core/dom/ElementShadow.h"
41 #include "core/dom/EventNames.h" 41 #include "core/dom/EventNames.h"
42 #include "core/dom/ExceptionCode.h" 42 #include "core/dom/ExceptionCode.h"
43 #include "core/dom/IdTargetObserver.h" 43 #include "core/dom/IdTargetObserver.h"
44 #include "core/dom/KeyboardEvent.h" 44 #include "core/dom/KeyboardEvent.h"
45 #include "core/dom/MouseEvent.h" 45 #include "core/dom/MouseEvent.h"
46 #include "core/dom/ScopedEventQueue.h" 46 #include "core/dom/ScopedEventQueue.h"
47 #include "core/dom/ShadowRoot.h" 47 #include "core/dom/ShadowRoot.h"
(...skipping 1839 matching lines...) Expand 10 before | Expand all | Expand 10 after
1887 } 1887 }
1888 1888
1889 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) 1889 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
1890 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() 1890 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer()
1891 { 1891 {
1892 return m_inputType->customStyleForRenderer(document()->styleResolver()->styl eForElement(this)); 1892 return m_inputType->customStyleForRenderer(document()->styleResolver()->styl eForElement(this));
1893 } 1893 }
1894 #endif 1894 #endif
1895 1895
1896 } // namespace 1896 } // namespace
OLDNEW
« no previous file with comments | « Source/core/html/HTMLDialogElement.cpp ('k') | Source/core/html/HTMLLinkElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698