| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "chrome/browser/notifications/message_center_settings_controller.h" | 5 #include "chrome/browser/notifications/message_center_settings_controller.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/i18n/string_compare.h" | 9 #include "base/i18n/string_compare.h" |
| 10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
| 11 #include "chrome/browser/extensions/app_icon_loader_impl.h" | 11 #include "chrome/browser/extensions/app_icon_loader_impl.h" |
| 12 #include "chrome/browser/extensions/extension_service.h" | 12 #include "chrome/browser/extensions/extension_service.h" |
| 13 #include "chrome/browser/favicon/favicon_service.h" | 13 #include "chrome/browser/favicon/favicon_service.h" |
| 14 #include "chrome/browser/favicon/favicon_service_factory.h" | 14 #include "chrome/browser/favicon/favicon_service_factory.h" |
| 15 #include "chrome/browser/favicon/favicon_types.h" | |
| 16 #include "chrome/browser/history/history_types.h" | 15 #include "chrome/browser/history/history_types.h" |
| 17 #include "chrome/browser/notifications/desktop_notification_service.h" | 16 #include "chrome/browser/notifications/desktop_notification_service.h" |
| 18 #include "chrome/browser/notifications/desktop_notification_service_factory.h" | 17 #include "chrome/browser/notifications/desktop_notification_service_factory.h" |
| 19 #include "chrome/browser/profiles/profile.h" | 18 #include "chrome/browser/profiles/profile.h" |
| 20 #include "chrome/browser/profiles/profile_manager.h" | 19 #include "chrome/browser/profiles/profile_manager.h" |
| 21 #include "chrome/common/cancelable_task_tracker.h" | 20 #include "chrome/common/cancelable_task_tracker.h" |
| 22 #include "chrome/common/extensions/extension_constants.h" | 21 #include "chrome/common/extensions/extension_constants.h" |
| 22 #include "chrome/common/favicon/favicon_types.h" |
| 23 #include "grit/theme_resources.h" | 23 #include "grit/theme_resources.h" |
| 24 #include "grit/ui_strings.h" | 24 #include "grit/ui_strings.h" |
| 25 #include "ui/base/l10n/l10n_util.h" | 25 #include "ui/base/l10n/l10n_util.h" |
| 26 #include "ui/base/resource/resource_bundle.h" | 26 #include "ui/base/resource/resource_bundle.h" |
| 27 #include "ui/gfx/image/image.h" | 27 #include "ui/gfx/image/image.h" |
| 28 #include "ui/message_center/message_center_style.h" | 28 #include "ui/message_center/message_center_style.h" |
| 29 | 29 |
| 30 #if defined(USE_ASH) | 30 #if defined(USE_ASH) |
| 31 #include "ash/shell.h" | 31 #include "ash/shell.h" |
| 32 #include "ash/system/web_notification/web_notification_tray.h" | 32 #include "ash/system/web_notification/web_notification_tray.h" |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 UpdateFavicon(url, favicon_result.image)); | 233 UpdateFavicon(url, favicon_result.image)); |
| 234 } | 234 } |
| 235 | 235 |
| 236 | 236 |
| 237 void MessageCenterSettingsController::SetAppImage(const std::string& id, | 237 void MessageCenterSettingsController::SetAppImage(const std::string& id, |
| 238 const gfx::ImageSkia& image) { | 238 const gfx::ImageSkia& image) { |
| 239 FOR_EACH_OBSERVER(message_center::NotifierSettingsObserver, | 239 FOR_EACH_OBSERVER(message_center::NotifierSettingsObserver, |
| 240 observers_, | 240 observers_, |
| 241 UpdateIconImage(id, gfx::Image(image))); | 241 UpdateIconImage(id, gfx::Image(image))); |
| 242 } | 242 } |
| OLD | NEW |