| 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/ui/cocoa/notifications/message_center_tray_bridge.h" | 5 #include "chrome/browser/ui/cocoa/notifications/message_center_tray_bridge.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/i18n/number_formatting.h" | 8 #include "base/i18n/number_formatting.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "base/prefs/pref_service.h" | 10 #include "base/prefs/pref_service.h" |
| 11 #include "chrome/browser/browser_process.h" | 11 #include "chrome/browser/browser_process.h" |
| 12 #include "chrome/common/pref_names.h" | 12 #include "chrome/common/pref_names.h" |
| 13 #include "grit/chromium_strings.h" | 13 #include "chrome/grit/chromium_strings.h" |
| 14 #include "grit/generated_resources.h" | 14 #include "chrome/grit/generated_resources.h" |
| 15 #include "grit/ui_strings.h" | 15 #include "grit/ui_strings.h" |
| 16 #include "ui/base/l10n/l10n_util.h" | 16 #include "ui/base/l10n/l10n_util.h" |
| 17 #import "ui/base/l10n/l10n_util_mac.h" | 17 #import "ui/base/l10n/l10n_util_mac.h" |
| 18 #import "ui/message_center/cocoa/popup_collection.h" | 18 #import "ui/message_center/cocoa/popup_collection.h" |
| 19 #import "ui/message_center/cocoa/status_item_view.h" | 19 #import "ui/message_center/cocoa/status_item_view.h" |
| 20 #import "ui/message_center/cocoa/tray_controller.h" | 20 #import "ui/message_center/cocoa/tray_controller.h" |
| 21 #import "ui/message_center/cocoa/tray_view_controller.h" | 21 #import "ui/message_center/cocoa/tray_view_controller.h" |
| 22 #include "ui/message_center/message_center.h" | 22 #include "ui/message_center/message_center.h" |
| 23 #include "ui/message_center/message_center_tray.h" | 23 #include "ui/message_center/message_center_tray.h" |
| 24 | 24 |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 } | 149 } |
| 150 | 150 |
| 151 bool MessageCenterTrayBridge::ShouldShowStatusItem() const { | 151 bool MessageCenterTrayBridge::ShouldShowStatusItem() const { |
| 152 return g_browser_process->local_state()->GetBoolean( | 152 return g_browser_process->local_state()->GetBoolean( |
| 153 prefs::kMessageCenterShowIcon); | 153 prefs::kMessageCenterShowIcon); |
| 154 } | 154 } |
| 155 | 155 |
| 156 void MessageCenterTrayBridge::OnShowStatusItemChanged() { | 156 void MessageCenterTrayBridge::OnShowStatusItemChanged() { |
| 157 UpdateStatusItem(); | 157 UpdateStatusItem(); |
| 158 } | 158 } |
| OLD | NEW |