Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5136)

Unified Diff: ash/common/system/chromeos/power/battery_notification.cc

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ash/common/system/chromeos/power/battery_notification.cc
diff --git a/ash/common/system/chromeos/power/battery_notification.cc b/ash/common/system/chromeos/power/battery_notification.cc
deleted file mode 100644
index 23395ff2a312c8c2930f8ca705fb7abf6e6a5402..0000000000000000000000000000000000000000
--- a/ash/common/system/chromeos/power/battery_notification.cc
+++ /dev/null
@@ -1,111 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "ash/common/system/chromeos/power/battery_notification.h"
-
-#include "ash/common/system/chromeos/power/power_status.h"
-#include "ash/common/system/system_notifier.h"
-#include "ash/resources/grit/ash_resources.h"
-#include "ash/strings/grit/ash_strings.h"
-#include "base/i18n/message_formatter.h"
-#include "base/i18n/time_formatting.h"
-#include "base/strings/utf_string_conversions.h"
-#include "base/time/time.h"
-#include "ui/base/l10n/l10n_util.h"
-#include "ui/base/l10n/time_format.h"
-#include "ui/base/resource/resource_bundle.h"
-#include "ui/gfx/image/image.h"
-#include "ui/message_center/message_center.h"
-#include "ui/message_center/notification.h"
-
-using message_center::MessageCenter;
-using message_center::Notification;
-
-namespace ash {
-
-namespace {
-
-const char kBatteryNotificationId[] = "battery";
-
-gfx::Image& GetBatteryImage(TrayPower::NotificationState notification_state) {
- int resource_id;
- if (PowerStatus::Get()->IsUsbChargerConnected()) {
- resource_id = IDR_AURA_NOTIFICATION_BATTERY_FLUCTUATING;
- } else if (notification_state == TrayPower::NOTIFICATION_LOW_POWER) {
- resource_id = IDR_AURA_NOTIFICATION_BATTERY_LOW;
- } else if (notification_state == TrayPower::NOTIFICATION_CRITICAL) {
- resource_id = IDR_AURA_NOTIFICATION_BATTERY_CRITICAL;
- } else {
- NOTREACHED();
- resource_id = 0;
- }
-
- return ui::ResourceBundle::GetSharedInstance().GetImageNamed(resource_id);
-}
-
-std::unique_ptr<Notification> CreateNotification(
- TrayPower::NotificationState notification_state) {
- const PowerStatus& status = *PowerStatus::Get();
-
- base::string16 message = base::i18n::MessageFormatter::FormatWithNumberedArgs(
- l10n_util::GetStringUTF16(IDS_ASH_STATUS_TRAY_BATTERY_PERCENT),
- static_cast<double>(status.GetRoundedBatteryPercent()) / 100.0);
-
- const base::TimeDelta time = status.IsBatteryCharging()
- ? status.GetBatteryTimeToFull()
- : status.GetBatteryTimeToEmpty();
- base::string16 time_message;
- if (status.IsUsbChargerConnected()) {
- time_message = l10n_util::GetStringUTF16(
- IDS_ASH_STATUS_TRAY_BATTERY_CHARGING_UNRELIABLE);
- } else if (PowerStatus::ShouldDisplayBatteryTime(time) &&
- !status.IsBatteryDischargingOnLinePower()) {
- if (status.IsBatteryCharging()) {
- time_message = l10n_util::GetStringFUTF16(
- IDS_ASH_STATUS_TRAY_BATTERY_TIME_UNTIL_FULL,
- TimeDurationFormat(time, base::DURATION_WIDTH_NARROW));
- } else {
- // This is a low battery warning prompting the user in minutes.
- time_message = ui::TimeFormat::Simple(ui::TimeFormat::FORMAT_REMAINING,
- ui::TimeFormat::LENGTH_LONG, time);
- }
- }
-
- if (!time_message.empty())
- message = message + base::ASCIIToUTF16("\n") + time_message;
-
- std::unique_ptr<Notification> notification(new Notification(
- message_center::NOTIFICATION_TYPE_SIMPLE, kBatteryNotificationId,
- base::string16(), message, GetBatteryImage(notification_state),
- base::string16(), GURL(),
- message_center::NotifierId(message_center::NotifierId::SYSTEM_COMPONENT,
- system_notifier::kNotifierBattery),
- message_center::RichNotificationData(), NULL));
- notification->SetSystemPriority();
- return notification;
-}
-
-} // namespace
-
-BatteryNotification::BatteryNotification(
- MessageCenter* message_center,
- TrayPower::NotificationState notification_state)
- : message_center_(message_center) {
- message_center_->AddNotification(CreateNotification(notification_state));
-}
-
-BatteryNotification::~BatteryNotification() {
- if (message_center_->FindVisibleNotificationById(kBatteryNotificationId))
- message_center_->RemoveNotification(kBatteryNotificationId, false);
-}
-
-void BatteryNotification::Update(
- TrayPower::NotificationState notification_state) {
- if (message_center_->FindVisibleNotificationById(kBatteryNotificationId)) {
- message_center_->UpdateNotification(kBatteryNotificationId,
- CreateNotification(notification_state));
- }
-}
-
-} // namespace ash
« no previous file with comments | « ash/common/system/chromeos/power/battery_notification.h ('k') | ash/common/system/chromeos/power/dual_role_notification.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698