OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 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/notification_common.h" |
| 6 |
| 7 #include "chrome/browser/profiles/profile.h" |
| 8 #include "chrome/browser/ui/chrome_pages.h" |
| 9 #include "chrome/browser/ui/scoped_tabbed_browser_displayer.h" |
| 10 #include "chrome/common/chrome_switches.h" |
| 11 #include "content/public/browser/browser_context.h" |
| 12 |
| 13 // static |
| 14 void NotificationCommon::OpenNotificationSettings( |
| 15 content::BrowserContext* browser_context) { |
| 16 #if defined(OS_ANDROID) |
| 17 NOTIMPLEMENTED(); |
| 18 #else |
| 19 Profile* profile = Profile::FromBrowserContext(browser_context); |
| 20 DCHECK(profile); |
| 21 |
| 22 if (switches::SettingsWindowEnabled()) { |
| 23 chrome::ShowContentSettingsExceptionsInWindow( |
| 24 profile, CONTENT_SETTINGS_TYPE_NOTIFICATIONS); |
| 25 } else { |
| 26 chrome::ScopedTabbedBrowserDisplayer browser_displayer(profile); |
| 27 chrome::ShowContentSettingsExceptions(browser_displayer.browser(), |
| 28 CONTENT_SETTINGS_TYPE_NOTIFICATIONS); |
| 29 } |
| 30 #endif // defined(OS_ANDROID) |
| 31 } |
OLD | NEW |