| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |