| 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" |
| 11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 12 #include "ui/arc/notification/arc_custom_notification_view.h" | |
| 13 #include "ui/arc/notification/arc_notification_delegate.h" | 12 #include "ui/arc/notification/arc_notification_delegate.h" |
| 14 #include "ui/gfx/geometry/size.h" | 13 #include "ui/gfx/geometry/size.h" |
| 15 #include "ui/gfx/image/image.h" | 14 #include "ui/gfx/image/image.h" |
| 16 #include "ui/message_center/message_center_style.h" | 15 #include "ui/message_center/message_center_style.h" |
| 17 #include "ui/message_center/notification.h" | 16 #include "ui/message_center/notification.h" |
| 18 #include "ui/message_center/notification_types.h" | 17 #include "ui/message_center/notification_types.h" |
| 19 #include "ui/message_center/notifier_settings.h" | 18 #include "ui/message_center/notifier_settings.h" |
| 20 | 19 |
| 21 namespace arc { | 20 namespace arc { |
| 22 | 21 |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 | 188 |
| 190 const std::string& ArcNotificationItemImpl::GetNotificationKey() const { | 189 const std::string& ArcNotificationItemImpl::GetNotificationKey() const { |
| 191 return notification_key_; | 190 return notification_key_; |
| 192 } | 191 } |
| 193 | 192 |
| 194 const std::string& ArcNotificationItemImpl::GetNotificationId() const { | 193 const std::string& ArcNotificationItemImpl::GetNotificationId() const { |
| 195 return notification_id_; | 194 return notification_id_; |
| 196 } | 195 } |
| 197 | 196 |
| 198 } // namespace arc | 197 } // namespace arc |
| OLD | NEW |