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

Side by Side Diff: chrome/browser/notifications/notification_common.cc

Issue 2095223002: Refactor notification operation functionality out of PNS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove renamed files Created 4 years, 5 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 unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698