Index: chrome/browser/browser_process.h |
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h |
index ef3b6d706089768cd631018669c3121d6ad7affc..bb0d79461014d2f6b28272c69482f779a3e54bc9 100644 |
--- a/chrome/browser/browser_process.h |
+++ b/chrome/browser/browser_process.h |
@@ -22,6 +22,7 @@ class DownloadRequestManager; |
class GoogleURLTracker; |
class IconManager; |
class MetricsService; |
+class NotificationUIManager; |
class PrefService; |
class ProfileManager; |
class DebuggerWrapper; |
@@ -83,6 +84,11 @@ class BrowserProcess { |
virtual DevToolsManager* devtools_manager() = 0; |
virtual Clipboard* clipboard() = 0; |
+#if defined(OS_WIN) |
+ // Returns the manager for desktop notifications. |
+ virtual NotificationUIManager* notification_ui_manager() = 0; |
+#endif |
+ |
// Returns the thread that we perform I/O coordination on (network requests, |
// communication with renderers, etc. |
// NOTE: need to check the return value for NULL. |