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

Side by Side Diff: ash/system/power/dual_role_notification.cc

Issue 2729363002: chromeos: Move files in //ash/common to //ash, part 3 (Closed)
Patch Set: Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "ash/system/power/dual_role_notification.h" 5 #include "ash/system/power/dual_role_notification.h"
6 6
7 #include <set> 7 #include <set>
8 8
9 #include "ash/common/wm_shell.h"
10 #include "ash/resources/grit/ash_resources.h" 9 #include "ash/resources/grit/ash_resources.h"
11 #include "ash/strings/grit/ash_strings.h" 10 #include "ash/strings/grit/ash_strings.h"
12 #include "ash/system/power/power_status.h" 11 #include "ash/system/power/power_status.h"
13 #include "ash/system/system_notifier.h" 12 #include "ash/system/system_notifier.h"
14 #include "ash/system/tray/system_tray_controller.h" 13 #include "ash/system/tray/system_tray_controller.h"
14 #include "ash/wm_shell.h"
15 #include "base/strings/utf_string_conversions.h" 15 #include "base/strings/utf_string_conversions.h"
16 #include "ui/base/l10n/l10n_util.h" 16 #include "ui/base/l10n/l10n_util.h"
17 #include "ui/base/l10n/time_format.h" 17 #include "ui/base/l10n/time_format.h"
18 #include "ui/base/resource/resource_bundle.h" 18 #include "ui/base/resource/resource_bundle.h"
19 #include "ui/gfx/image/image.h" 19 #include "ui/gfx/image/image.h"
20 #include "ui/message_center/message_center.h" 20 #include "ui/message_center/message_center.h"
21 #include "ui/message_center/notification.h" 21 #include "ui/message_center/notification.h"
22 #include "ui/message_center/notification_delegate.h" 22 #include "ui/message_center/notification_delegate.h"
23 23
24 using message_center::MessageCenter; 24 using message_center::MessageCenter;
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 base::string16(), GURL(), 148 base::string16(), GURL(),
149 message_center::NotifierId(message_center::NotifierId::SYSTEM_COMPONENT, 149 message_center::NotifierId(message_center::NotifierId::SYSTEM_COMPONENT,
150 system_notifier::kNotifierDualRole), 150 system_notifier::kNotifierDualRole),
151 message_center::RichNotificationData(), 151 message_center::RichNotificationData(),
152 new DualRoleNotificationDelegate)); 152 new DualRoleNotificationDelegate));
153 notification->set_priority(message_center::MIN_PRIORITY); 153 notification->set_priority(message_center::MIN_PRIORITY);
154 return notification; 154 return notification;
155 } 155 }
156 156
157 } // namespace ash 157 } // namespace ash
OLDNEW
« no previous file with comments | « ash/system/palette/tools/screenshot_unittest.cc ('k') | ash/system/power/power_event_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698