Notification       53 Source/bindings/v8/Dictionary.h class Notification;
Notification       62 Source/core/events/EventTarget.h class Notification;
Notification       43 Source/modules/notifications/Notification.cpp PassRefPtrWillBeRawPtr<Notification> Notification::create(ExecutionContext* context, const String& title, const Dictionary& options)
Notification       46 Source/modules/notifications/Notification.cpp     RefPtrWillBeRawPtr<Notification> notification = adoptRefWillBeRefCountedGarbageCollected(new Notification(title, context, client));
Notification       67 Source/modules/notifications/Notification.cpp Notification::Notification(const String& title, ExecutionContext* context, NotificationClient* client)
Notification       73 Source/modules/notifications/Notification.cpp     , m_asyncRunner(adoptPtr(new AsyncMethodRunner<Notification>(this, &Notification::show)))
Notification       81 Source/modules/notifications/Notification.cpp Notification::~Notification()
Notification       85 Source/modules/notifications/Notification.cpp void Notification::show()
Notification      100 Source/modules/notifications/Notification.cpp void Notification::close()
Notification      113 Source/modules/notifications/Notification.cpp void Notification::dispatchShowEvent()
Notification      118 Source/modules/notifications/Notification.cpp void Notification::dispatchClickEvent()
Notification      125 Source/modules/notifications/Notification.cpp void Notification::dispatchErrorEvent()
Notification      130 Source/modules/notifications/Notification.cpp void Notification::dispatchCloseEvent()
Notification      136 Source/modules/notifications/Notification.cpp TextDirection Notification::direction() const
Notification      142 Source/modules/notifications/Notification.cpp const String& Notification::permissionString(NotificationClient::Permission permission)
Notification      161 Source/modules/notifications/Notification.cpp const String& Notification::permission(ExecutionContext* context)
Notification      167 Source/modules/notifications/Notification.cpp void Notification::requestPermission(ExecutionContext* context, PassOwnPtr<NotificationPermissionCallback> callback)
Notification      173 Source/modules/notifications/Notification.cpp bool Notification::dispatchEvent(PassRefPtrWillBeRawPtr<Event> event)
Notification      180 Source/modules/notifications/Notification.cpp const AtomicString& Notification::interfaceName() const
Notification      182 Source/modules/notifications/Notification.cpp     return EventTargetNames::Notification;
Notification      185 Source/modules/notifications/Notification.cpp void Notification::stop()
Notification      197 Source/modules/notifications/Notification.cpp bool Notification::hasPendingActivity() const
Notification       52 Source/modules/notifications/Notification.h class Notification : public RefCountedWillBeRefCountedGarbageCollected<Notification>, public ScriptWrappable, public ActiveDOMObject, public EventTargetWithInlineData {
Notification       53 Source/modules/notifications/Notification.h     DEFINE_EVENT_TARGET_REFCOUNTING(RefCountedWillBeRefCountedGarbageCollected<Notification>);
Notification       56 Source/modules/notifications/Notification.h     static PassRefPtrWillBeRawPtr<Notification> create(ExecutionContext*, const String& title, const Dictionary& options);
Notification       58 Source/modules/notifications/Notification.h     virtual ~Notification();
Notification       99 Source/modules/notifications/Notification.h     Notification(const String& title, ExecutionContext*, NotificationClient*);
Notification      133 Source/modules/notifications/Notification.h     OwnPtr<AsyncMethodRunner<Notification> > m_asyncRunner;
Notification       42 Source/modules/notifications/NotificationClient.h class Notification;
Notification       54 Source/modules/notifications/NotificationClient.h     virtual bool show(Notification*) = 0;
Notification       57 Source/modules/notifications/NotificationClient.h     virtual void close(Notification*) = 0;
Notification       62 Source/modules/notifications/NotificationClient.h     virtual void notificationObjectDestroyed(Notification*) = 0;
Notification       58 Source/web/NotificationPresenterImpl.cpp             m_callback->handleEvent(Notification::permissionString(static_cast<NotificationClient::Permission>(m_presenter->checkPermission(WebSecurityOrigin(m_securityOrigin)))));
Notification       80 Source/web/NotificationPresenterImpl.cpp bool NotificationPresenterImpl::show(Notification* notification)
Notification       82 Source/web/NotificationPresenterImpl.cpp     return m_presenter->show(PassRefPtr<Notification>(notification));
Notification       85 Source/web/NotificationPresenterImpl.cpp void NotificationPresenterImpl::close(Notification* notification)
Notification       87 Source/web/NotificationPresenterImpl.cpp     m_presenter->close(PassRefPtr<Notification>(notification));
Notification       90 Source/web/NotificationPresenterImpl.cpp     m_presenter->cancel(PassRefPtr<Notification>(notification));
Notification       93 Source/web/NotificationPresenterImpl.cpp void NotificationPresenterImpl::notificationObjectDestroyed(Notification* notification)
Notification       95 Source/web/NotificationPresenterImpl.cpp     m_presenter->objectDestroyed(PassRefPtr<Notification>(notification));
Notification       50 Source/web/NotificationPresenterImpl.h     virtual bool show(WebCore::Notification*) OVERRIDE;
Notification       51 Source/web/NotificationPresenterImpl.h     virtual void close(WebCore::Notification*) OVERRIDE;
Notification       52 Source/web/NotificationPresenterImpl.h     virtual void notificationObjectDestroyed(WebCore::Notification*) OVERRIDE;
Notification       39 Source/web/WebNotification.cpp using WebCore::Notification;
Notification      117 Source/web/WebNotification.cpp WebNotification::WebNotification(const WTF::PassRefPtr<WebCore::Notification>& notification)
Notification      122 Source/web/WebNotification.cpp WebNotification& WebNotification::operator=(const WTF::PassRefPtr<Notification>& notification)
Notification      128 Source/web/WebNotification.cpp WebNotification::operator WTF::PassRefPtr<Notification>() const
Notification     2806 Source/web/tests/WebFrameTest.cpp         Notification(WebLocalFrame* frame, v8::Handle<v8::Context> context, int worldId)
Notification     2813 Source/web/tests/WebFrameTest.cpp         ~Notification()
Notification     2818 Source/web/tests/WebFrameTest.cpp         bool Equals(Notification* other)
Notification     2845 Source/web/tests/WebFrameTest.cpp     std::vector<Notification*> createNotifications;
Notification     2846 Source/web/tests/WebFrameTest.cpp     std::vector<Notification*> releaseNotifications;
Notification     2851 Source/web/tests/WebFrameTest.cpp         createNotifications.push_back(new Notification(frame, context, worldId));
Notification     2856 Source/web/tests/WebFrameTest.cpp         releaseNotifications.push_back(new Notification(frame, context, worldId));
Notification     2879 Source/web/tests/WebFrameTest.cpp     ContextLifetimeTestWebFrameClient::Notification* firstCreateNotification = webFrameClient.createNotifications[0];
Notification     2880 Source/web/tests/WebFrameTest.cpp     ContextLifetimeTestWebFrameClient::Notification* secondCreateNotification = webFrameClient.createNotifications[1];
Notification     2894 Source/web/tests/WebFrameTest.cpp     ContextLifetimeTestWebFrameClient::Notification* firstReleaseNotification = webFrameClient.releaseNotifications[0];
Notification     2895 Source/web/tests/WebFrameTest.cpp     ContextLifetimeTestWebFrameClient::Notification* secondReleaseNotification = webFrameClient.releaseNotifications[1];
Notification     2927 Source/web/tests/WebFrameTest.cpp     ContextLifetimeTestWebFrameClient::Notification* firstRefreshNotification = webFrameClient.createNotifications[2];
Notification     2928 Source/web/tests/WebFrameTest.cpp     ContextLifetimeTestWebFrameClient::Notification* secondRefreshNotification = webFrameClient.createNotifications[3];
Notification     2962 Source/web/tests/WebFrameTest.cpp     ContextLifetimeTestWebFrameClient::Notification* notification = webFrameClient.createNotifications[0];
Notification       39 public/web/WebNotification.h namespace WebCore { class Notification; }
Notification       96 public/web/WebNotification.h     WebNotification(const WTF::PassRefPtr<WebCore::Notification>&);
Notification       97 public/web/WebNotification.h     WebNotification& operator=(const WTF::PassRefPtr<WebCore::Notification>&);
Notification       98 public/web/WebNotification.h     operator WTF::PassRefPtr<WebCore::Notification>() const;
Notification      102 public/web/WebNotification.h     WebPrivatePtr<WebCore::Notification> m_private;