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

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

Issue 695853002: Include Web Notifications on Android at build-time. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: attempt 2 Created 6 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/notifications/notification_ui_manager_android.h" 5 #include "chrome/browser/notifications/notification_ui_manager_android.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 // static 9 // static
10 NotificationUIManager* NotificationUIManager::Create(PrefService* local_state) { 10 NotificationUIManager* NotificationUIManager::Create(PrefService* local_state) {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 Profile* profile, 44 Profile* profile,
45 const GURL& source) { 45 const GURL& source) {
46 return std::set<std::string>(); 46 return std::set<std::string>();
47 } 47 }
48 48
49 bool NotificationUIManagerAndroid::CancelAllBySourceOrigin( 49 bool NotificationUIManagerAndroid::CancelAllBySourceOrigin(
50 const GURL& source_origin) { 50 const GURL& source_origin) {
51 return false; 51 return false;
52 } 52 }
53 53
54 bool NotificationUIManagerAndroid::CancelAllByProfile(Profile* profile) { 54 bool NotificationUIManagerAndroid::CancelAllByProfile(ProfileID profile_id) {
55 return false; 55 return false;
56 } 56 }
57 57
58 void NotificationUIManagerAndroid::CancelAll() { 58 void NotificationUIManagerAndroid::CancelAll() {
59 } 59 }
OLDNEW
« no previous file with comments | « chrome/browser/notifications/notification_ui_manager_android.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698