OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2008, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2008, 2010 Apple Inc. All rights reserved. |
3 * Copyright (C) 2010 Google Inc. All rights reserved. | 3 * Copyright (C) 2010 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 , m_spinButtonOwner(&spinButtonOwner) | 47 , m_spinButtonOwner(&spinButtonOwner) |
48 , m_capturing(false) | 48 , m_capturing(false) |
49 , m_upDownState(Indeterminate) | 49 , m_upDownState(Indeterminate) |
50 , m_pressStartingState(Indeterminate) | 50 , m_pressStartingState(Indeterminate) |
51 , m_repeatingTimer(this, &SpinButtonElement::repeatingTimerFired) | 51 , m_repeatingTimer(this, &SpinButtonElement::repeatingTimerFired) |
52 { | 52 { |
53 } | 53 } |
54 | 54 |
55 PassRefPtrWillBeRawPtr<SpinButtonElement> SpinButtonElement::create(Document& do
cument, SpinButtonOwner& spinButtonOwner) | 55 PassRefPtrWillBeRawPtr<SpinButtonElement> SpinButtonElement::create(Document& do
cument, SpinButtonOwner& spinButtonOwner) |
56 { | 56 { |
57 RefPtrWillBeRawPtr<SpinButtonElement> element = adoptRefWillBeRefCountedGarb
ageCollected(new SpinButtonElement(document, spinButtonOwner)); | 57 RefPtrWillBeRawPtr<SpinButtonElement> element = adoptRefWillBeNoop(new SpinB
uttonElement(document, spinButtonOwner)); |
58 element->setShadowPseudoId(AtomicString("-webkit-inner-spin-button", AtomicS
tring::ConstructFromLiteral)); | 58 element->setShadowPseudoId(AtomicString("-webkit-inner-spin-button", AtomicS
tring::ConstructFromLiteral)); |
59 element->setAttribute(idAttr, ShadowElementNames::spinButton()); | 59 element->setAttribute(idAttr, ShadowElementNames::spinButton()); |
60 return element.release(); | 60 return element.release(); |
61 } | 61 } |
62 | 62 |
63 void SpinButtonElement::detach(const AttachContext& context) | 63 void SpinButtonElement::detach(const AttachContext& context) |
64 { | 64 { |
65 releaseCapture(EventDispatchDisallowed); | 65 releaseCapture(EventDispatchDisallowed); |
66 HTMLDivElement::detach(context); | 66 HTMLDivElement::detach(context); |
67 } | 67 } |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 return !m_spinButtonOwner || m_spinButtonOwner->shouldSpinButtonRespondToMou
seEvents(); | 257 return !m_spinButtonOwner || m_spinButtonOwner->shouldSpinButtonRespondToMou
seEvents(); |
258 } | 258 } |
259 | 259 |
260 void SpinButtonElement::trace(Visitor* visitor) | 260 void SpinButtonElement::trace(Visitor* visitor) |
261 { | 261 { |
262 visitor->trace(m_spinButtonOwner); | 262 visitor->trace(m_spinButtonOwner); |
263 HTMLDivElement::trace(visitor); | 263 HTMLDivElement::trace(visitor); |
264 } | 264 } |
265 | 265 |
266 } | 266 } |
OLD | NEW |