OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/common/desktop_notifications/active_notification_tracker.h" | 5 #include "chrome/common/desktop_notifications/active_notification_tracker.h" |
6 | 6 |
7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
8 #include "webkit/api/public/WebNotification.h" | 8 #include "third_party/WebKit/WebKit/chromium/public/WebNotification.h" |
9 #include "webkit/api/public/WebNotificationPermissionCallback.h" | 9 #include "third_party/WebKit/WebKit/chromium/public/WebNotificationPermissionCal
lback.h" |
10 | 10 |
11 using WebKit::WebNotification; | 11 using WebKit::WebNotification; |
12 using WebKit::WebNotificationPermissionCallback; | 12 using WebKit::WebNotificationPermissionCallback; |
13 | 13 |
14 bool ActiveNotificationTracker::GetId( | 14 bool ActiveNotificationTracker::GetId( |
15 const WebNotification& notification, int& id) { | 15 const WebNotification& notification, int& id) { |
16 DCHECK(MessageLoop::current()->type() == MessageLoop::TYPE_UI); | 16 DCHECK(MessageLoop::current()->type() == MessageLoop::TYPE_UI); |
17 ReverseTable::iterator iter = reverse_notification_table_.find(notification); | 17 ReverseTable::iterator iter = reverse_notification_table_.find(notification); |
18 if (iter == reverse_notification_table_.end()) | 18 if (iter == reverse_notification_table_.end()) |
19 return false; | 19 return false; |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 int ActiveNotificationTracker::RegisterPermissionRequest( | 60 int ActiveNotificationTracker::RegisterPermissionRequest( |
61 WebNotificationPermissionCallback* callback) { | 61 WebNotificationPermissionCallback* callback) { |
62 DCHECK(MessageLoop::current()->type() == MessageLoop::TYPE_UI); | 62 DCHECK(MessageLoop::current()->type() == MessageLoop::TYPE_UI); |
63 return callback_table_.Add(callback); | 63 return callback_table_.Add(callback); |
64 } | 64 } |
65 | 65 |
66 void ActiveNotificationTracker::OnPermissionRequestComplete(int id) { | 66 void ActiveNotificationTracker::OnPermissionRequestComplete(int id) { |
67 DCHECK(MessageLoop::current()->type() == MessageLoop::TYPE_UI); | 67 DCHECK(MessageLoop::current()->type() == MessageLoop::TYPE_UI); |
68 callback_table_.Remove(id); | 68 callback_table_.Remove(id); |
69 } | 69 } |
OLD | NEW |