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

Unified Diff: ash/system/chromeos/audio/tray_audio_chromeos.cc

Issue 1924703002: Rename gfx::Display/Screen to display::Display/Screen in ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « ash/system/chromeos/audio/tray_audio_chromeos.h ('k') | ash/system/chromeos/brightness/tray_brightness.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/chromeos/audio/tray_audio_chromeos.cc
diff --git a/ash/system/chromeos/audio/tray_audio_chromeos.cc b/ash/system/chromeos/audio/tray_audio_chromeos.cc
index 1a99133cba8ecbc4a0e5cefd02796073422e97c1..9cf6b87c65d254697fe83798d2198fe155cd088d 100644
--- a/ash/system/chromeos/audio/tray_audio_chromeos.cc
+++ b/ash/system/chromeos/audio/tray_audio_chromeos.cc
@@ -59,7 +59,7 @@ void TrayAudioChromeOs::DestroyDetailedView() {
}
}
-void TrayAudioChromeOs::OnDisplayAdded(const gfx::Display& new_display) {
+void TrayAudioChromeOs::OnDisplayAdded(const display::Display& new_display) {
TrayAudio::OnDisplayAdded(new_display);
// This event will be triggered when the lid of the device is opened to exit
@@ -68,7 +68,7 @@ void TrayAudioChromeOs::OnDisplayAdded(const gfx::Display& new_display) {
audio_delegate_->SetActiveHDMIOutoutRediscoveringIfNecessary(true);
}
-void TrayAudioChromeOs::OnDisplayRemoved(const gfx::Display& old_display) {
+void TrayAudioChromeOs::OnDisplayRemoved(const display::Display& old_display) {
TrayAudio::OnDisplayRemoved(old_display);
// This event will be triggered when the lid of the device is closed to enter
@@ -77,7 +77,7 @@ void TrayAudioChromeOs::OnDisplayRemoved(const gfx::Display& old_display) {
audio_delegate_->SetActiveHDMIOutoutRediscoveringIfNecessary(true);
}
-void TrayAudioChromeOs::OnDisplayMetricsChanged(const gfx::Display& display,
+void TrayAudioChromeOs::OnDisplayMetricsChanged(const display::Display& display,
uint32_t changed_metrics) {
// The event could be triggered multiple times during the HDMI display
// transition, we don't need to restart HDMI re-discovering grace period
« no previous file with comments | « ash/system/chromeos/audio/tray_audio_chromeos.h ('k') | ash/system/chromeos/brightness/tray_brightness.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698