Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: chrome/browser/notifications/desktop_notification_service_mac.mm

Issue 343066: Now that the UI layer is accessible cross-platform, coalesce the DesktopNotif... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698