| Index: ui/display/types/fake_display_controller.h
|
| diff --git a/ui/display/types/fake_display_controller.h b/ui/display/types/fake_display_controller.h
|
| index 72ece3496477187fa21ed3324d2781edd0ca762a..275f8be72942980c8d5d07f33e6dc6f300c543ab 100644
|
| --- a/ui/display/types/fake_display_controller.h
|
| +++ b/ui/display/types/fake_display_controller.h
|
| @@ -15,12 +15,10 @@ namespace gfx {
|
| class Size;
|
| }
|
|
|
| -namespace ui {
|
| -class DisplaySnapshot;
|
| -}
|
| -
|
| namespace display {
|
|
|
| +class DisplaySnapshot;
|
| +
|
| // Controls the fake display state. Provided by the NativeDisplayDelegate if
|
| // it is intended for use off device where there are no physical displays and
|
| // we need to fake the display state.
|
| @@ -32,7 +30,7 @@ class DISPLAY_TYPES_EXPORT FakeDisplayController {
|
|
|
| // Adds |display| to the list of displays and returns true if successful. Will
|
| // fail if an existing display has the same id as |display|.
|
| - virtual bool AddDisplay(std::unique_ptr<ui::DisplaySnapshot> display) = 0;
|
| + virtual bool AddDisplay(std::unique_ptr<DisplaySnapshot> display) = 0;
|
|
|
| // Removes a fake display with specified id, returns true if successful.
|
| virtual bool RemoveDisplay(int64_t display_id) = 0;
|
|
|