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/sync/sync_error_notifier_ash.h" | 5 #include "chrome/browser/sync/sync_error_notifier_ash.h" |
6 | 6 |
7 #include "ash/shell.h" | 7 #include "ash/shell.h" |
8 #include "ash/shell_delegate.h" | 8 #include "ash/shell_delegate.h" |
9 #include "ash/system/system_notifier.h" | 9 #include "ash/system/system_notifier.h" |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
12 #include "chrome/browser/browser_process.h" | 12 #include "chrome/browser/browser_process.h" |
13 #include "chrome/browser/notifications/notification.h" | 13 #include "chrome/browser/notifications/notification.h" |
14 #include "chrome/browser/notifications/notification_ui_manager.h" | 14 #include "chrome/browser/notifications/notification_ui_manager.h" |
15 #include "chrome/browser/profiles/profile.h" | 15 #include "chrome/browser/profiles/profile.h" |
16 #include "chrome/browser/ui/ash/multi_user/multi_user_util.h" | 16 #include "chrome/browser/ui/ash/multi_user/multi_user_util.h" |
17 #include "chrome/browser/ui/chrome_pages.h" | 17 #include "chrome/browser/ui/chrome_pages.h" |
18 #include "chrome/browser/ui/webui/signin/login_ui_service.h" | 18 #include "chrome/browser/ui/webui/signin/login_ui_service.h" |
19 #include "chrome/browser/ui/webui/signin/login_ui_service_factory.h" | 19 #include "chrome/browser/ui/webui/signin/login_ui_service_factory.h" |
20 #include "chrome/common/url_constants.h" | 20 #include "chrome/common/url_constants.h" |
21 #include "chrome/grit/chromium_strings.h" | 21 #include "chrome/grit/chromium_strings.h" |
22 #include "chrome/grit/generated_resources.h" | 22 #include "chrome/grit/generated_resources.h" |
| 23 #include "components/user_manager/user_id.h" |
23 #include "grit/theme_resources.h" | 24 #include "grit/theme_resources.h" |
24 #include "third_party/WebKit/public/web/WebTextDirection.h" | 25 #include "third_party/WebKit/public/web/WebTextDirection.h" |
25 #include "ui/base/l10n/l10n_util.h" | 26 #include "ui/base/l10n/l10n_util.h" |
26 #include "ui/base/resource/resource_bundle.h" | 27 #include "ui/base/resource/resource_bundle.h" |
27 #include "ui/message_center/notification.h" | 28 #include "ui/message_center/notification.h" |
28 #include "ui/message_center/notification_delegate.h" | 29 #include "ui/message_center/notification_delegate.h" |
29 | 30 |
30 #if defined(OS_CHROMEOS) | 31 #if defined(OS_CHROMEOS) |
31 #include "chrome/browser/chromeos/login/user_flow.h" | 32 #include "chrome/browser/chromeos/login/user_flow.h" |
32 #include "chrome/browser/chromeos/login/users/chrome_user_manager.h" | 33 #include "chrome/browser/chromeos/login/users/chrome_user_manager.h" |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 | 160 |
160 // Set the delegate for the notification's sync setup button. | 161 // Set the delegate for the notification's sync setup button. |
161 SyncNotificationDelegate* delegate = | 162 SyncNotificationDelegate* delegate = |
162 new SyncNotificationDelegate(notification_id_, profile_); | 163 new SyncNotificationDelegate(notification_id_, profile_); |
163 | 164 |
164 message_center::NotifierId notifier_id( | 165 message_center::NotifierId notifier_id( |
165 message_center::NotifierId::SYSTEM_COMPONENT, | 166 message_center::NotifierId::SYSTEM_COMPONENT, |
166 kProfileSyncNotificationId); | 167 kProfileSyncNotificationId); |
167 | 168 |
168 // Set |profile_id| for multi-user notification blocker. | 169 // Set |profile_id| for multi-user notification blocker. |
169 notifier_id.profile_id = multi_user_util::GetUserIDFromProfile(profile_); | 170 notifier_id.profile_id = multi_user_util::GetUserIDFromProfile(profile_).GetUs
erEmail(); |
170 | 171 |
171 // Add a new notification. | 172 // Add a new notification. |
172 Notification notification( | 173 Notification notification( |
173 message_center::NOTIFICATION_TYPE_SIMPLE, | 174 message_center::NOTIFICATION_TYPE_SIMPLE, |
174 GURL(notification_id_), | 175 GURL(notification_id_), |
175 l10n_util::GetStringUTF16(IDS_SYNC_ERROR_BUBBLE_VIEW_TITLE), | 176 l10n_util::GetStringUTF16(IDS_SYNC_ERROR_BUBBLE_VIEW_TITLE), |
176 l10n_util::GetStringUTF16(IDS_SYNC_PASSPHRASE_ERROR_BUBBLE_VIEW_MESSAGE), | 177 l10n_util::GetStringUTF16(IDS_SYNC_PASSPHRASE_ERROR_BUBBLE_VIEW_MESSAGE), |
177 ui::ResourceBundle::GetSharedInstance().GetImageNamed( | 178 ui::ResourceBundle::GetSharedInstance().GetImageNamed( |
178 IDR_NOTIFICATION_ALERT), | 179 IDR_NOTIFICATION_ALERT), |
179 notifier_id, | 180 notifier_id, |
180 base::string16(), // display_source | 181 base::string16(), // display_source |
181 notification_id_, | 182 notification_id_, |
182 data, | 183 data, |
183 delegate); | 184 delegate); |
184 notification_ui_manager->Add(notification, profile_); | 185 notification_ui_manager->Add(notification, profile_); |
185 } | 186 } |
OLD | NEW |