Upstream version 7.35.144.0
[platform/framework/web/crosswalk.git] / src / ui / message_center / message_center_util.cc
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
3 // found in the LICENSE file.
4
5 #include "ui/message_center/message_center_util.h"
6
7 #include "base/command_line.h"
8 #include "ui/message_center/message_center_switches.h"
9
10 namespace message_center {
11
12 // TODO(dimich): remove this function when balloon notifications are removed
13 // completely.
14 bool IsRichNotificationEnabled() {
15 #if defined(OS_MACOSX) || defined(USE_AURA)
16   return true;
17 #else
18   return false;
19 #endif
20 }
21
22 MessageCenterShowState GetMessageCenterShowState() {
23 #if defined(OS_MACOSX)
24   std::string tray_behavior =
25       CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
26           switches::kNotificationCenterTrayBehavior);
27   if (tray_behavior == "never")
28     return MESSAGE_CENTER_SHOW_NEVER;
29   if (tray_behavior == "always")
30     return MESSAGE_CENTER_SHOW_ALWAYS;
31   if (tray_behavior == "unread")
32     return MESSAGE_CENTER_SHOW_UNREAD;
33   return MESSAGE_CENTER_SHOW_AFTER_FIRST;
34 #elif defined(OS_CHROMEOS)
35   return MESSAGE_CENTER_SHOW_UNREAD;
36 #else  // defined(OS_WIN) || defined(OS_LINUX)
37   return MESSAGE_CENTER_SHOW_AFTER_FIRST;
38 #endif
39 }
40
41 }  // namespace message_center