| Index: ash/wm/window_mirror_view.h
|
| diff --git a/ash/wm/window_mirror_view.h b/ash/wm/window_mirror_view.h
|
| index 5fabd641ff0e00933d41df7b379b5705224f49f5..b1b645976b11afca2e4515cb619a51194ae245d3 100644
|
| --- a/ash/wm/window_mirror_view.h
|
| +++ b/ash/wm/window_mirror_view.h
|
| @@ -17,14 +17,14 @@ class LayerTreeOwner;
|
|
|
| namespace ash {
|
|
|
| -class WmWindowAura;
|
| +class WmWindow;
|
|
|
| namespace wm {
|
|
|
| // A view that mirrors the client area of a single window.
|
| class WindowMirrorView : public views::View {
|
| public:
|
| - explicit WindowMirrorView(WmWindowAura* window);
|
| + explicit WindowMirrorView(WmWindow* window);
|
| ~WindowMirrorView() override;
|
|
|
| // views::View:
|
| @@ -45,7 +45,7 @@ class WindowMirrorView : public views::View {
|
| gfx::Rect GetClientAreaBounds() const;
|
|
|
| // The original window that is being represented by |this|.
|
| - WmWindowAura* target_;
|
| + WmWindow* target_;
|
|
|
| // Retains ownership of the mirror layer tree. This is lazily initialized
|
| // the first time the view becomes visible.
|
|
|