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

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

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 | « Source/core/html/HTMLInputElement.h ('k') | Source/core/html/HTMLKeygenElement.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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 #include "wtf/MathExtras.h" 82 #include "wtf/MathExtras.h"
83 83
84 namespace blink { 84 namespace blink {
85 85
86 using namespace HTMLNames; 86 using namespace HTMLNames;
87 87
88 class ListAttributeTargetObserver : public IdTargetObserver { 88 class ListAttributeTargetObserver : public IdTargetObserver {
89 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; 89 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
90 public: 90 public:
91 static PassOwnPtrWillBeRawPtr<ListAttributeTargetObserver> create(const Atom icString& id, HTMLInputElement*); 91 static PassOwnPtrWillBeRawPtr<ListAttributeTargetObserver> create(const Atom icString& id, HTMLInputElement*);
92 virtual void trace(Visitor*) OVERRIDE; 92 virtual void trace(Visitor*) override;
93 virtual void idTargetChanged() OVERRIDE; 93 virtual void idTargetChanged() override;
94 94
95 private: 95 private:
96 ListAttributeTargetObserver(const AtomicString& id, HTMLInputElement*); 96 ListAttributeTargetObserver(const AtomicString& id, HTMLInputElement*);
97 97
98 RawPtrWillBeMember<HTMLInputElement> m_element; 98 RawPtrWillBeMember<HTMLInputElement> m_element;
99 }; 99 };
100 100
101 // FIXME: According to HTML4, the length attribute's value can be arbitrarily 101 // FIXME: According to HTML4, the length attribute's value can be arbitrarily
102 // large. However, due to https://bugs.webkit.org/show_bug.cgi?id=14536 things 102 // large. However, due to https://bugs.webkit.org/show_bug.cgi?id=14536 things
103 // get rather sluggish when a text field has a larger number of characters than 103 // get rather sluggish when a text field has a larger number of characters than
(...skipping 1700 matching lines...) Expand 10 before | Expand all | Expand 10 after
1804 { 1804 {
1805 listAttributeTargetChanged(); 1805 listAttributeTargetChanged();
1806 } 1806 }
1807 1807
1808 AXObject* HTMLInputElement::popupRootAXObject() 1808 AXObject* HTMLInputElement::popupRootAXObject()
1809 { 1809 {
1810 return m_inputTypeView->popupRootAXObject(); 1810 return m_inputTypeView->popupRootAXObject();
1811 } 1811 }
1812 1812
1813 } // namespace 1813 } // namespace
OLDNEW
« no previous file with comments | « Source/core/html/HTMLInputElement.h ('k') | Source/core/html/HTMLKeygenElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698