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

Side by Side Diff: Source/core/html/forms/InputTypeView.h

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/forms/InputType.h ('k') | Source/core/html/forms/MonthInputType.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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are 7 * modification, are permitted provided that the following conditions are
8 * met: 8 * met:
9 * 9 *
10 * * Redistributions of source code must retain the above copyright 10 * * Redistributions of source code must retain the above copyright
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 class Element; 48 class Element;
49 class Event; 49 class Event;
50 class HTMLFormElement; 50 class HTMLFormElement;
51 class HTMLInputElement; 51 class HTMLInputElement;
52 class KeyboardEvent; 52 class KeyboardEvent;
53 class MouseEvent; 53 class MouseEvent;
54 class RenderObject; 54 class RenderObject;
55 class RenderStyle; 55 class RenderStyle;
56 class TouchEvent; 56 class TouchEvent;
57 57
58 struct ClickHandlingState FINAL : public NoBaseWillBeGarbageCollected<ClickHandl ingState> { 58 struct ClickHandlingState final : public NoBaseWillBeGarbageCollected<ClickHandl ingState> {
59 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; 59 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
60 60
61 public: 61 public:
62 void trace(Visitor*); 62 void trace(Visitor*);
63 63
64 bool checked; 64 bool checked;
65 bool indeterminate; 65 bool indeterminate;
66 RefPtrWillBeMember<HTMLInputElement> checkedRadioButton; 66 RefPtrWillBeMember<HTMLInputElement> checkedRadioButton;
67 }; 67 };
68 68
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 HTMLInputElement& element() const { return *m_element; } 125 HTMLInputElement& element() const { return *m_element; }
126 126
127 private: 127 private:
128 // Not a RefPtr because the HTMLInputElement object owns this InputTypeView 128 // Not a RefPtr because the HTMLInputElement object owns this InputTypeView
129 // object. 129 // object.
130 RawPtrWillBeMember<HTMLInputElement> m_element; 130 RawPtrWillBeMember<HTMLInputElement> m_element;
131 }; 131 };
132 132
133 } // namespace blink 133 } // namespace blink
134 #endif 134 #endif
OLDNEW
« no previous file with comments | « Source/core/html/forms/InputType.h ('k') | Source/core/html/forms/MonthInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698