/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8NotificationCenterCustom.cpp | 38 #include "NotificationCenter.h" 51 INC_STATS(L"DOM.NotificationCenter.CreateHTMLNotification()"); 52 NotificationCenter* notificationCenter = V8NotificationCenter::toNative(args.Holder()); 56 RefPtr<Notification> notification = notificationCenter->createHTMLNotification(url, ec); 67 INC_STATS(L"DOM.NotificationCenter.CreateNotification()"); 68 NotificationCenter* notificationCenter = V8NotificationCenter::toNative(args.Holder()); 71 RefPtr<Notification> notification = notificationCenter->createNotification(toWebCoreString(args[0]), toWebCoreString(args[1]), toWebCoreString(args[2]), ec); 82 INC_STATS(L"DOM.NotificationCenter.RequestPermission()") [all...] |
/external/webkit/Source/WebCore/notifications/ |
NotificationCenter.cpp | 35 #include "NotificationCenter.h" 43 NotificationCenter::NotificationCenter(ScriptExecutionContext* context, NotificationPresenter* presenter) 47 int NotificationCenter::checkPermission() 54 void NotificationCenter::requestPermission(PassRefPtr<VoidCallback> callback) 61 void NotificationCenter::disconnectFrame()
|
NotificationCenter.h | 47 class NotificationCenter : public RefCounted<NotificationCenter>, public ActiveDOMObject { 49 static PassRefPtr<NotificationCenter> create(ScriptExecutionContext* context, NotificationPresenter* presenter) { return adoptRef(new NotificationCenter(context, presenter)); } 82 NotificationCenter(ScriptExecutionContext*, NotificationPresenter*);
|
Notification.h | 58 class NotificationCenter; 64 static PassRefPtr<Notification> create(const KURL& url, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider); 65 static PassRefPtr<Notification> create(const NotificationContents& contents, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider); 104 // Deprecated. Use functions from NotificationCenter. 115 Notification(const KURL&, ScriptExecutionContext*, ExceptionCode&, PassRefPtr<NotificationCenter>); 116 Notification(const NotificationContents&, ScriptExecutionContext*, ExceptionCode&, PassRefPtr<NotificationCenter>); 143 RefPtr<NotificationCenter> m_notificationCenter;
|
Notification.cpp | 37 #include "NotificationCenter.h" 49 Notification::Notification(const KURL& url, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider) 69 Notification::Notification(const NotificationContents& contents, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider) 96 PassRefPtr<Notification> Notification::create(const KURL& url, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider) 101 PassRefPtr<Notification> Notification::create(const NotificationContents& contents, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider)
|
NotificationCenter.idl | 36 ] NotificationCenter {
|
/external/webkit/Source/WebKit/mac/WebInspector/ |
WebNodeHighlight.mm | 93 NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; 95 [notificationCenter addObserver:self selector:@selector(_repositionHighlightWindow) name:NSViewFrameDidChangeNotification object:v]; 96 [notificationCenter addObserver:self selector:@selector(_repositionHighlightWindow) name:NSViewBoundsDidChangeNotification object:v]; 118 NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; 119 [notificationCenter removeObserver:self name:NSViewFrameDidChangeNotification object:nil]; 120 [notificationCenter removeObserver:self name:NSViewBoundsDidChangeNotification object:nil];
|
/external/webkit/Source/WebKit/mac/Plugins/ |
WebBaseNetscapePluginView.mm | 390 NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; 391 [notificationCenter addObserver:self selector:@selector(windowWillClose:) 393 [notificationCenter addObserver:self selector:@selector(windowBecameKey:) 395 [notificationCenter addObserver:self selector:@selector(windowResignedKey:) 397 [notificationCenter addObserver:self selector:@selector(windowDidMiniaturize:) 399 [notificationCenter addObserver:self selector:@selector(windowDidDeminiaturize:) 402 [notificationCenter addObserver:self selector:@selector(loginWindowDidSwitchFromUser:) 404 [notificationCenter addObserver:self selector:@selector(loginWindowDidSwitchToUser:) 410 NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; 411 [notificationCenter removeObserver:self name:NSWindowWillCloseNotification object:nil]; [all...] |
/external/webkit/Source/WebKit2/UIProcess/API/mac/ |
PDFViewController.mm | 271 NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; 272 [notificationCenter addObserver:self selector:@selector(_scaleOrDisplayModeOrPageChanged:) name:_webkit_PDFViewScaleChangedNotification object:_pdfView]; 273 [notificationCenter addObserver:self selector:@selector(_scaleOrDisplayModeOrPageChanged:) name:_webkit_PDFViewDisplayModeChangedNotification object:_pdfView]; 274 [notificationCenter addObserver:self selector:@selector(_scaleOrDisplayModeOrPageChanged:) name:_webkit_PDFViewPageChangedNotification object:_pdfView]; 282 NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; 283 [notificationCenter removeObserver:self name:_webkit_PDFViewScaleChangedNotification object:_pdfView]; 284 [notificationCenter removeObserver:self name:_webkit_PDFViewDisplayModeChangedNotification object:_pdfView]; 285 [notificationCenter removeObserver:self name:_webkit_PDFViewPageChangedNotification object:_pdfView];
|
/external/webkit/Source/WebCore/workers/ |
WorkerContext.h | 57 class NotificationCenter; 110 NotificationCenter* webkitNotifications() const; 198 mutable RefPtr<NotificationCenter> m_notifications;
|
WorkerContext.idl | 80 readonly attribute [EnabledAtRuntime] NotificationCenter webkitNotifications;
|
WorkerContext.cpp | 66 #include "NotificationCenter.h" 284 NotificationCenter* WorkerContext::webkitNotifications() const 287 m_notifications = NotificationCenter::create(scriptExecutionContext(), m_thread->getNotificationPresenter());
|
/external/webkit/Source/WebKit/mac/Plugins/Hosted/ |
WebHostedNetscapePluginView.mm | 291 NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; 292 [notificationCenter addObserver:self selector:@selector(windowFrameDidChange:) 294 [notificationCenter addObserver:self selector:@selector(windowFrameDidChange:) 306 NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; 307 [notificationCenter removeObserver:self name:NSWindowDidMoveNotification object:nil]; 308 [notificationCenter removeObserver:self name:NSWindowDidResizeNotification object:nil];
|
/external/webkit/Source/WebCore/bindings/js/ |
JSDesktopNotificationsCustom.cpp | 41 #include "NotificationCenter.h"
|
/external/webkit/Source/WebCore/page/ |
DOMWindow.h | 60 class NotificationCenter; 404 NotificationCenter* webkitNotifications() const; 493 mutable RefPtr<NotificationCenter> m_notifications;
|
DOMWindow.cpp | 76 #include "NotificationCenter.h" 684 NotificationCenter* DOMWindow::webkitNotifications() const 699 m_notifications = NotificationCenter::create(document, provider); [all...] |
DOMWindow.idl | 178 readonly attribute [EnabledAtRuntime] NotificationCenter webkitNotifications; [all...] |
/external/webkit/Source/WebKit/mac/WebView/ |
WebPDFView.mm | 430 NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; 431 [notificationCenter addObserver:self 436 [notificationCenter addObserver:self 441 [notificationCenter addObserver:self 446 [notificationCenter addObserver:self 451 [notificationCenter addObserver:self 465 NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; 466 [notificationCenter removeObserver:self 469 [notificationCenter removeObserver:self 472 [notificationCenter removeObserver:sel [all...] |
WebHTMLView.mm | [all...] |
/external/chromium/chrome/browser/ |
app_controller_mac.mm | 181 NSNotificationCenter* notificationCenter = 183 [notificationCenter 188 [notificationCenter 193 [notificationCenter 198 [notificationCenter 206 [notificationCenter [all...] |
/external/webkit/Source/WebCore/ |
DerivedSources.make | 321 NotificationCenter \
|
CodeGenerators.pri | 315 notifications/NotificationCenter.idl \
|
ChangeLog-2011-02-16 | [all...] |
WebCore.pro | [all...] |
CMakeLists.txt | [all...] |