OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #include "chrome/browser/notifications/desktop_notification_service.h" | |
6 | |
7 bool DesktopNotificationService::ShowDesktopNotification( | |
8 const GURL& url, | |
9 const GURL&, | |
10 int process_id, | |
11 int route_id, | |
12 NotificationSource source, | |
13 int notification_id) { | |
14 // TODO(johnnyg): http://crbug.com/23066 Mac support coming soon. | |
15 return false; | |
16 } | |
17 | |
18 bool DesktopNotificationService::ShowDesktopNotificationText( | |
19 const GURL& origin, | |
20 const GURL& url, | |
21 const string16& title, | |
22 const string16& text, | |
23 int process_id, | |
24 int route_id, | |
25 NotificationSource source, | |
26 int notification_id) { | |
27 // TODO(johnnyg): http://crbug.com/23066 Integration with Growl will go here | |
28 // Coming soon. | |
29 return false; | |
30 } | |
OLD | NEW |