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 "chrome/grit/chromium_strings.h" | 13 #include "chrome/grit/chromium_strings.h" |
14 #include "chrome/grit/generated_resources.h" | 14 #include "chrome/grit/generated_resources.h" |
15 #include "ui/base/l10n/l10n_util.h" | 15 #include "ui/base/l10n/l10n_util.h" |
16 #import "ui/base/l10n/l10n_util_mac.h" | 16 #import "ui/base/l10n/l10n_util_mac.h" |
17 #import "ui/message_center/cocoa/popup_collection.h" | 17 #import "ui/message_center/cocoa/popup_collection.h" |
18 #import "ui/message_center/cocoa/status_item_view.h" | 18 #import "ui/message_center/cocoa/status_item_view.h" |
19 #import "ui/message_center/cocoa/tray_controller.h" | 19 #import "ui/message_center/cocoa/tray_controller.h" |
20 #import "ui/message_center/cocoa/tray_view_controller.h" | 20 #import "ui/message_center/cocoa/tray_view_controller.h" |
21 #include "ui/message_center/message_center.h" | 21 #include "ui/message_center/message_center.h" |
22 #include "ui/message_center/message_center_tray.h" | 22 #include "ui/message_center/message_center_tray.h" |
23 #include "ui/strings/grit/ui_strings.h" | |
24 | 23 |
25 namespace message_center { | 24 namespace message_center { |
26 | 25 |
27 MessageCenterTrayDelegate* CreateMessageCenterTray() { | 26 MessageCenterTrayDelegate* CreateMessageCenterTray() { |
28 return new MessageCenterTrayBridge(g_browser_process->message_center()); | 27 return new MessageCenterTrayBridge(g_browser_process->message_center()); |
29 } | 28 } |
30 | 29 |
31 } // namespace message_center | 30 } // namespace message_center |
32 | 31 |
33 MessageCenterTrayBridge::MessageCenterTrayBridge( | 32 MessageCenterTrayBridge::MessageCenterTrayBridge( |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 } | 148 } |
150 | 149 |
151 bool MessageCenterTrayBridge::ShouldShowStatusItem() const { | 150 bool MessageCenterTrayBridge::ShouldShowStatusItem() const { |
152 return g_browser_process->local_state()->GetBoolean( | 151 return g_browser_process->local_state()->GetBoolean( |
153 prefs::kMessageCenterShowIcon); | 152 prefs::kMessageCenterShowIcon); |
154 } | 153 } |
155 | 154 |
156 void MessageCenterTrayBridge::OnShowStatusItemChanged() { | 155 void MessageCenterTrayBridge::OnShowStatusItemChanged() { |
157 UpdateStatusItem(); | 156 UpdateStatusItem(); |
158 } | 157 } |
OLD | NEW |