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

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

Issue 23956012: Stop passing NodeRenderingContext except in textRendererIsNeeded (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/HTMLMediaElement.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 758 matching lines...) Expand 10 before | Expand all | Expand 10 after
769 m_parsingInProgress = false; 769 m_parsingInProgress = false;
770 HTMLTextFormControlElement::finishParsingChildren(); 770 HTMLTextFormControlElement::finishParsingChildren();
771 if (!m_stateRestored) { 771 if (!m_stateRestored) {
772 bool checked = hasAttribute(checkedAttr); 772 bool checked = hasAttribute(checkedAttr);
773 if (checked) 773 if (checked)
774 setChecked(checked); 774 setChecked(checked);
775 m_reflectsCheckedAttribute = true; 775 m_reflectsCheckedAttribute = true;
776 } 776 }
777 } 777 }
778 778
779 bool HTMLInputElement::rendererIsNeeded(const NodeRenderingContext& context) 779 bool HTMLInputElement::rendererIsNeeded(const RenderStyle& style)
780 { 780 {
781 return m_inputType->rendererIsNeeded() && HTMLTextFormControlElement::render erIsNeeded(context); 781 return m_inputType->rendererIsNeeded() && HTMLTextFormControlElement::render erIsNeeded(style);
782 } 782 }
783 783
784 RenderObject* HTMLInputElement::createRenderer(RenderStyle* style) 784 RenderObject* HTMLInputElement::createRenderer(RenderStyle* style)
785 { 785 {
786 return m_inputTypeView->createRenderer(style); 786 return m_inputTypeView->createRenderer(style);
787 } 787 }
788 788
789 void HTMLInputElement::attach(const AttachContext& context) 789 void HTMLInputElement::attach(const AttachContext& context)
790 { 790 {
791 PostAttachCallbackDisabler disabler(this); 791 PostAttachCallbackDisabler disabler(this);
(...skipping 1087 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/HTMLMediaElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698