OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/chromeos/extensions/file_browser_notifications.h" | 5 #include "chrome/browser/chromeos/extensions/file_browser_notifications.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "base/stl_util.h" | 9 #include "base/stl_util.h" |
10 #include "base/string_number_conversions.h" | 10 #include "base/string_number_conversions.h" |
11 #include "base/utf_string_conversions.h" | 11 #include "base/utf_string_conversions.h" |
12 #include "chrome/browser/notifications/desktop_notification_service.h" | 12 #include "chrome/browser/notifications/desktop_notification_service.h" |
13 #include "chrome/browser/notifications/notification_delegate.h" | 13 #include "chrome/browser/notifications/notification_delegate.h" |
14 #include "chrome/browser/profiles/profile.h" | 14 #include "chrome/browser/profiles/profile.h" |
15 #include "chrome/browser/ui/browser.h" | 15 #include "chrome/browser/ui/browser.h" |
16 #include "chrome/browser/ui/browser_list.h" | 16 #include "chrome/browser/ui/browser_list.h" |
17 #include "chrome/browser/ui/webui/web_ui_util.h" | 17 #include "chrome/browser/ui/webui/web_ui_util.h" |
18 #include "content/public/browser/browser_thread.h" | |
19 #include "grit/generated_resources.h" | 18 #include "grit/generated_resources.h" |
20 #include "grit/theme_resources.h" | 19 #include "grit/theme_resources.h" |
21 #include "ui/base/l10n/l10n_util.h" | 20 #include "ui/base/l10n/l10n_util.h" |
22 #include "ui/base/resource/resource_bundle.h" | 21 #include "ui/base/resource/resource_bundle.h" |
23 | 22 |
24 namespace { | 23 namespace { |
25 | 24 |
26 struct NotificationTypeInfo { | 25 struct NotificationTypeInfo { |
27 FileBrowserNotifications::NotificationType type; | 26 FileBrowserNotifications::NotificationType type; |
28 const char* notification_id_prefix; | 27 const char* notification_id_prefix; |
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 } | 390 } |
392 | 391 |
393 string16 FileBrowserNotifications::GetNotificationMessageForTest( | 392 string16 FileBrowserNotifications::GetNotificationMessageForTest( |
394 const std::string& id) const { | 393 const std::string& id) const { |
395 NotificationMap::const_iterator it = notification_map_.find(id); | 394 NotificationMap::const_iterator it = notification_map_.find(id); |
396 if (it == notification_map_.end()) | 395 if (it == notification_map_.end()) |
397 return string16(); | 396 return string16(); |
398 return it->second->message(); | 397 return it->second->message(); |
399 } | 398 } |
400 | 399 |
OLD | NEW |