OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "ash/display/display_error_observer.h" | 5 #include "ash/display/display_error_observer_chromeos.h" |
6 | 6 |
7 #include "grit/ash_resources.h" | 7 #include "grit/ash_resources.h" |
8 #include "grit/ash_strings.h" | 8 #include "grit/ash_strings.h" |
9 #include "ui/base/l10n/l10n_util.h" | 9 #include "ui/base/l10n/l10n_util.h" |
10 #include "ui/base/resource/resource_bundle.h" | 10 #include "ui/base/resource/resource_bundle.h" |
11 #include "ui/message_center/message_center.h" | 11 #include "ui/message_center/message_center.h" |
12 #include "ui/message_center/notification.h" | 12 #include "ui/message_center/notification.h" |
13 #include "ui/message_center/notification_delegate.h" | 13 #include "ui/message_center/notification_delegate.h" |
14 #include "ui/message_center/notification_list.h" | 14 #include "ui/message_center/notification_list.h" |
15 | 15 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 notifications.begin(); iter != notifications.end(); ++iter) { | 80 notifications.begin(); iter != notifications.end(); ++iter) { |
81 if ((*iter)->id() == kDisplayErrorNotificationId) | 81 if ((*iter)->id() == kDisplayErrorNotificationId) |
82 return (*iter)->title(); | 82 return (*iter)->title(); |
83 } | 83 } |
84 | 84 |
85 return base::string16(); | 85 return base::string16(); |
86 } | 86 } |
87 | 87 |
88 } // namespace internal | 88 } // namespace internal |
89 } // namespace ash | 89 } // namespace ash |
OLD | NEW |