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

  /external/chromium_org/chrome/browser/extensions/api/braille_display_private/
braille_display_private_api.h 54 class EventDelegate {
56 virtual ~EventDelegate() {}
67 void SetEventDelegateForTest(scoped_ptr<EventDelegate> delegate);
72 scoped_ptr<EventDelegate> event_delegate_;
braille_display_private_api.cc 28 : public BrailleDisplayPrivateAPI::EventDelegate {
100 scoped_ptr<EventDelegate> delegate) {
braille_display_private_apitest.cc 277 class MockEventDelegate : public BrailleDisplayPrivateAPI::EventDelegate {
295 scoped_ptr<BrailleDisplayPrivateAPI::EventDelegate>(delegate).Pass());
  /external/chromium_org/chrome/browser/extensions/api/idle/
idle_manager.h 58 class EventDelegate {
60 EventDelegate() {}
61 virtual ~EventDelegate() {}
68 DISALLOW_COPY_AND_ASSIGN(EventDelegate);
94 void SetEventDelegateForTest(scoped_ptr<EventDelegate> event_delegate);
131 scoped_ptr<EventDelegate> event_delegate_;
idle_manager.cc 28 class DefaultEventDelegate : public IdleManager::EventDelegate {
199 scoped_ptr<EventDelegate> event_delegate) {
idle_api_unittest.cc 33 class MockEventDelegate : public IdleManager::EventDelegate {
149 scoped_ptr<IdleManager::EventDelegate>(event_delegate_).Pass());
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationNode.h 74 class EventDelegate : public NoBaseWillBeGarbageCollectedFinalized<EventDelegate> {
76 virtual ~EventDelegate() { }
122 explicit AnimationNode(const Timing&, PassOwnPtrWillBeRawPtr<EventDelegate> = nullptr);
155 OwnPtrWillBeMember<EventDelegate> m_eventDelegate;
Animation.h 53 static PassRefPtrWillBeRawPtr<Animation> create(Element*, PassRefPtrWillBeRawPtr<AnimationEffect>, const Timing&, Priority = DefaultPriority, PassOwnPtrWillBeRawPtr<EventDelegate> = nullptr);
98 Animation(Element*, PassRefPtrWillBeRawPtr<AnimationEffect>, const Timing&, Priority, PassOwnPtrWillBeRawPtr<EventDelegate>);
Animation.cpp 48 PassRefPtrWillBeRawPtr<Animation> Animation::create(Element* target, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing, Priority priority, PassOwnPtrWillBeRawPtr<EventDelegate> eventDelegate)
50 return adoptRefWillBeNoop(new Animation(target, effect, timing, priority, eventDelegate));
90 Animation::Animation(Element* target, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing, Priority priority, PassOwnPtrWillBeRawPtr<EventDelegate> eventDelegate)
91 : AnimationNode(timing, eventDelegate)
AnimationNode.cpp 53 AnimationNode::AnimationNode(const Timing& timing, PassOwnPtrWillBeRawPtr<EventDelegate> eventDelegate)
58 , m_eventDelegate(eventDelegate)
AnimationNodeTest.cpp 40 class TestAnimationNodeEventDelegate : public AnimationNode::EventDelegate {
77 TestAnimationNodeEventDelegate* eventDelegate() { return m_eventDelegate.get(); }
105 TestAnimationNode(const Timing& specified, TestAnimationNodeEventDelegate* eventDelegate)
106 : AnimationNode(specified, adoptPtrWillBeNoop(eventDelegate))
107 , m_eventDelegate(eventDelegate)
730 EXPECT_FALSE(animationNode->eventDelegate()->eventTriggered());
733 EXPECT_TRUE(animationNode->eventDelegate()->eventTriggered());
736 EXPECT_FALSE(animationNode->eventDelegate()->eventTriggered());
739 EXPECT_TRUE(animationNode->eventDelegate()->eventTriggered());
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.h 220 class AnimationEventDelegate FINAL : public AnimationNode::EventDelegate {
240 class TransitionEventDelegate FINAL : public AnimationNode::EventDelegate {
CSSAnimations.cpp 330 OwnPtrWillBeRawPtr<AnimationEventDelegate> eventDelegate = adoptPtrWillBeNoop(new AnimationEventDelegate(element, iter->name));
331 RefPtrWillBeRawPtr<Animation> animation = Animation::create(element, inertAnimation->effect(), inertAnimation->specifiedTiming(), Animation::DefaultPriority, eventDelegate.release());
367 OwnPtrWillBeRawPtr<TransitionEventDelegate> eventDelegate = adoptPtrWillBeNoop(new TransitionEventDelegate(element, newTransition.eventId));
393 RefPtrWillBeRawPtr<Animation> transition = Animation::create(element, effect, inertAnimation->specifiedTiming(), Animation::TransitionPriority, eventDelegate.release());
    [all...]

Completed in 326 milliseconds