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

Unified Diff: chrome/browser/chromeos/notifications/system_notification_factory.h

Issue 10947046: Eliminate kAshNotifyDisabled and SystemNotification (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix nit Created 8 years, 3 months 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/notifications/system_notification_factory.h
diff --git a/chrome/browser/chromeos/notifications/system_notification_factory.h b/chrome/browser/chromeos/notifications/system_notification_factory.h
deleted file mode 100644
index 4f5d989b3ee97ef55c4eec7bda40116666a52c0c..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/notifications/system_notification_factory.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_CHROMEOS_NOTIFICATIONS_SYSTEM_NOTIFICATION_FACTORY_H_
-#define CHROME_BROWSER_CHROMEOS_NOTIFICATIONS_SYSTEM_NOTIFICATION_FACTORY_H_
-
-#include "base/basictypes.h"
-#include "chrome/browser/notifications/notification.h"
-
-class GURL;
-class NotificationDelegate;
-
-namespace chromeos {
-
-// A utility class for system notifications.
-class SystemNotificationFactory {
- public:
-
- // Creates a system notification.
- static Notification Create(
- const GURL& icon, const string16& title,
- const string16& text,
- NotificationDelegate* delegate);
-
- // Creates a system notification with a footer link.
- static Notification Create(
- const GURL& icon, const string16& title,
- const string16& text, const string16& link,
- NotificationDelegate* delegate);
-};
-
-} // namespace chromeos
-
-#endif // CHROME_BROWSER_CHROMEOS_NOTIFICATIONS_SYSTEM_NOTIFICATION_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698