| Index: ash/shell.h
|
| diff --git a/ash/shell.h b/ash/shell.h
|
| index 6bb3be0e26a52ad14cf9c23967dead30e0d1b80c..5aceb413fccbf126a89d2d73eefabf1055b71519 100644
|
| --- a/ash/shell.h
|
| +++ b/ash/shell.h
|
| @@ -42,9 +42,6 @@ class ActivationClient;
|
| class FocusClient;
|
| }
|
| }
|
| -namespace chromeos {
|
| -class OutputConfigurator;
|
| -}
|
|
|
| namespace gfx {
|
| class ImageSkia;
|
| @@ -58,6 +55,7 @@ class KeyboardController;
|
|
|
| namespace ui {
|
| class Layer;
|
| +class OutputConfigurator;
|
| }
|
| namespace views {
|
| class NonClientFrameView;
|
| @@ -504,7 +502,7 @@ class ASH_EXPORT Shell
|
| #if defined(OS_CHROMEOS)
|
| #if defined(USE_X11)
|
| // TODO(oshima): Move these objects to DisplayController.
|
| - chromeos::OutputConfigurator* output_configurator() {
|
| + ui::OutputConfigurator* output_configurator() {
|
| return output_configurator_.get();
|
| }
|
| internal::OutputConfiguratorAnimation* output_configurator_animation() {
|
| @@ -716,7 +714,7 @@ class ASH_EXPORT Shell
|
| bluetooth_notification_controller_;
|
| #if defined(USE_X11)
|
| // Controls video output device state.
|
| - scoped_ptr<chromeos::OutputConfigurator> output_configurator_;
|
| + scoped_ptr<ui::OutputConfigurator> output_configurator_;
|
| scoped_ptr<internal::OutputConfiguratorAnimation>
|
| output_configurator_animation_;
|
| scoped_ptr<internal::DisplayErrorObserver> display_error_observer_;
|
|
|