| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |