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

Unified Diff: ash/wm/power_button_controller.h

Issue 226183004: Renamed OutputConfigurator to DisplayConfigurator (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: ash/wm/power_button_controller.h
diff --git a/ash/wm/power_button_controller.h b/ash/wm/power_button_controller.h
index d32b3ab020646aa31e5e9be9b418b7c3284b65c3..f1780146c773ccb41e003f4061c7049d2d3baf58 100644
--- a/ash/wm/power_button_controller.h
+++ b/ash/wm/power_button_controller.h
@@ -10,7 +10,7 @@
#include "base/basictypes.h"
#if defined(OS_CHROMEOS)
-#include "ui/display/chromeos/output_configurator.h"
+#include "ui/display/chromeos/display_configurator.h"
#endif
namespace gfx {
@@ -33,10 +33,10 @@ class LockStateController;
// Displays onscreen animations and locks or suspends the system in response to
// the power button being pressed or released.
class ASH_EXPORT PowerButtonController
-// TODO(derat): Remove these ifdefs after OutputConfigurator becomes
+// TODO(derat): Remove these ifdefs after DisplayConfigurator becomes
// cross-platform.
#if defined(OS_CHROMEOS)
- : public ui::OutputConfigurator::Observer
+ : public ui::DisplayConfigurator::Observer
#endif
{
public:
@@ -55,9 +55,9 @@ class ASH_EXPORT PowerButtonController
void OnLockButtonEvent(bool down, const base::TimeTicks& timestamp);
#if defined(OS_CHROMEOS)
- // Overriden from ui::OutputConfigurator::Observer:
+ // Overriden from ui::DisplayConfigurator::Observer:
virtual void OnDisplayModeChanged(
- const ui::OutputConfigurator::DisplayStateList& outputs) OVERRIDE;
+ const ui::DisplayConfigurator::DisplayStateList& outputs) OVERRIDE;
#endif
private:

Powered by Google App Engine
This is Rietveld 408576698