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

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

Issue 20123003: [oilpan] The Node hierarchy should have correct accept method chains (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 5 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 virtual void releaseCapture(); 59 virtual void releaseCapture();
60 void removeSpinButtonOwner() { m_spinButtonOwner = 0; } 60 void removeSpinButtonOwner() { m_spinButtonOwner = 0; }
61 61
62 void step(int amount); 62 void step(int amount);
63 63
64 virtual bool willRespondToMouseMoveEvents() OVERRIDE; 64 virtual bool willRespondToMouseMoveEvents() OVERRIDE;
65 virtual bool willRespondToMouseClickEvents() OVERRIDE; 65 virtual bool willRespondToMouseClickEvents() OVERRIDE;
66 66
67 void forwardEvent(Event*); 67 void forwardEvent(Event*);
68 68
69 virtual void acceptHeapVisitor(Visitor*) const OVERRIDE;
70
69 private: 71 private:
70 SpinButtonElement(Handle<Document>, SpinButtonOwner&); 72 SpinButtonElement(Handle<Document>, SpinButtonOwner&);
71 73
72 virtual const AtomicString& shadowPseudoId() const; 74 virtual const AtomicString& shadowPseudoId() const;
73 virtual void detach(); 75 virtual void detach();
74 virtual bool isSpinButtonElement() const { return true; } 76 virtual bool isSpinButtonElement() const { return true; }
75 virtual bool isDisabledFormControl() const OVERRIDE { return shadowHost() && shadowHost()->isDisabledFormControl(); } 77 virtual bool isDisabledFormControl() const OVERRIDE { return shadowHost() && shadowHost()->isDisabledFormControl(); }
76 virtual bool matchesReadOnlyPseudoClass() const OVERRIDE; 78 virtual bool matchesReadOnlyPseudoClass() const OVERRIDE;
77 virtual bool matchesReadWritePseudoClass() const OVERRIDE; 79 virtual bool matchesReadWritePseudoClass() const OVERRIDE;
78 virtual void defaultEventHandler(Event*); 80 virtual void defaultEventHandler(Event*);
79 virtual void willOpenPopup() OVERRIDE; 81 virtual void willOpenPopup() OVERRIDE;
80 void doStepAction(int); 82 void doStepAction(int);
81 void startRepeatingTimer(); 83 void startRepeatingTimer();
82 void stopRepeatingTimer(); 84 void stopRepeatingTimer();
83 void repeatingTimerFired(Timer<SpinButtonElement>*); 85 void repeatingTimerFired(Timer<SpinButtonElement>*);
84 virtual void setHovered(bool = true); 86 virtual void setHovered(bool = true);
85 bool shouldRespondToMouseEvents(); 87 bool shouldRespondToMouseEvents();
86 virtual bool isMouseFocusable() const { return false; } 88 virtual bool isMouseFocusable() const { return false; }
87 89
88 SpinButtonOwner* m_spinButtonOwner; 90 SpinButtonOwner* m_spinButtonOwner;
89 bool m_capturing; 91 bool m_capturing;
90 UpDownState m_upDownState; 92 UpDownState m_upDownState;
91 UpDownState m_pressStartingState; 93 UpDownState m_pressStartingState;
92 Timer<SpinButtonElement> m_repeatingTimer; 94 Timer<SpinButtonElement> m_repeatingTimer;
93 }; 95 };
94 96
95 } // namespace 97 } // namespace
96 98
97 #endif 99 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698