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

Side by Side Diff: Source/core/html/shadow/SpinButtonElement.cpp

Issue 324073002: Oilpan: Switch RefCountedGarbageCollected to GarbageCollectedFinalized for Node. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase and update Node base class list Created 6 years, 6 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
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « Source/core/html/shadow/SliderThumbElement.cpp ('k') | Source/core/html/shadow/TextControlInnerElements.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698