HomeSort by relevance Sort by last modified time
    Searched refs:EventDelegate (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/braille_display_private/
braille_display_private_api.h 52 class EventDelegate {
54 virtual ~EventDelegate() {}
65 void SetEventDelegateForTest(scoped_ptr<EventDelegate> delegate);
70 scoped_ptr<EventDelegate> event_delegate_;
braille_display_private_api.cc 29 : public BrailleDisplayPrivateAPI::EventDelegate {
100 scoped_ptr<EventDelegate> delegate) {
braille_display_private_apitest.cc 220 class MockEventDelegate : public BrailleDisplayPrivateAPI::EventDelegate {
238 scoped_ptr<BrailleDisplayPrivateAPI::EventDelegate>(delegate).Pass());
  /external/chromium_org/third_party/WebKit/Source/core/animation/
TimedItem.h 65 class EventDelegate {
67 virtual ~EventDelegate() { };
90 TimedItem(const Timing&, PassOwnPtr<EventDelegate> = nullptr);
125 OwnPtr<EventDelegate> m_eventDelegate;
Animation.h 47 static PassRefPtr<Animation> create(PassRefPtr<Element>, PassRefPtr<AnimationEffect>, const Timing&, Priority = DefaultPriority, PassOwnPtr<EventDelegate> = nullptr);
79 Animation(PassRefPtr<Element>, PassRefPtr<AnimationEffect>, const Timing&, Priority, PassOwnPtr<EventDelegate>);
Animation.cpp 42 PassRefPtr<Animation> Animation::create(PassRefPtr<Element> target, PassRefPtr<AnimationEffect> effect, const Timing& timing, Priority priority, PassOwnPtr<EventDelegate> eventDelegate)
44 return adoptRef(new Animation(target, effect, timing, priority, eventDelegate));
47 Animation::Animation(PassRefPtr<Element> target, PassRefPtr<AnimationEffect> effect, const Timing& timing, Priority priority, PassOwnPtr<EventDelegate> eventDelegate)
48 : TimedItem(timing, eventDelegate)
TimedItem.cpp 39 TimedItem::TimedItem(const Timing& timing, PassOwnPtr<EventDelegate> eventDelegate)
44 , m_eventDelegate(eventDelegate)
TimedItemTest.cpp 40 class TestTimedItemEventDelegate : public TimedItem::EventDelegate {
80 TestTimedItemEventDelegate* eventDelegate() { return m_eventDelegate; }
103 TestTimedItem(const Timing& specified, TestTimedItemEventDelegate* eventDelegate)
104 : TimedItem(specified, adoptPtr(eventDelegate))
105 , m_eventDelegate(eventDelegate)
710 EXPECT_TRUE(timedItem->eventDelegate()->eventTriggered());
714 EXPECT_FALSE(timedItem->eventDelegate()->eventTriggered());
718 EXPECT_TRUE(timedItem->eventDelegate()->eventTriggered());
719 EXPECT_TRUE(timedItem->eventDelegate()->phaseChanged());
720 EXPECT_TRUE(timedItem->eventDelegate()->iterationChanged())
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/idle/
idle_manager.h 57 class EventDelegate {
59 EventDelegate() {}
60 virtual ~EventDelegate() {}
67 DISALLOW_COPY_AND_ASSIGN(EventDelegate);
92 void SetEventDelegateForTest(scoped_ptr<EventDelegate> event_delegate);
130 scoped_ptr<EventDelegate> event_delegate_;
idle_manager.cc 31 class DefaultEventDelegate : public IdleManager::EventDelegate {
207 scoped_ptr<EventDelegate> event_delegate) {
idle_api_unittest.cc 34 class MockEventDelegate : public IdleManager::EventDelegate {
160 scoped_ptr<IdleManager::EventDelegate>(event_delegate_).Pass());
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.h 184 class AnimationEventDelegate FINAL : public TimedItem::EventDelegate {
198 class TransitionEventDelegate FINAL : public TimedItem::EventDelegate {

Completed in 77 milliseconds