| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 "ui/arc/notification/arc_notification_item_impl.h" | 5 #include "ui/arc/notification/arc_notification_item_impl.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 | 184 |
| 185 mojom::ArcNotificationShownContents ArcNotificationItemImpl::GetShownContents() | 185 mojom::ArcNotificationShownContents ArcNotificationItemImpl::GetShownContents() |
| 186 const { | 186 const { |
| 187 return shown_contents_; | 187 return shown_contents_; |
| 188 } | 188 } |
| 189 | 189 |
| 190 const std::string& ArcNotificationItemImpl::GetNotificationKey() const { | 190 const std::string& ArcNotificationItemImpl::GetNotificationKey() const { |
| 191 return notification_key_; | 191 return notification_key_; |
| 192 } | 192 } |
| 193 | 193 |
| 194 const std::string& ArcNotificationItemImpl::GetNotificationId() const { |
| 195 return notification_id_; |
| 196 } |
| 197 |
| 194 } // namespace arc | 198 } // namespace arc |
| OLD | NEW |