| Index: services/ui/ws/window_manager_display_root.h
|
| diff --git a/services/ui/ws/window_manager_display_root.h b/services/ui/ws/window_manager_display_root.h
|
| index d08dcecca4d2559ce62b2d816eb12f2779276270..a0a9b28b4ace281555a525929420d13a1568eaa7 100644
|
| --- a/services/ui/ws/window_manager_display_root.h
|
| +++ b/services/ui/ws/window_manager_display_root.h
|
| @@ -32,18 +32,18 @@ class WindowManagerDisplayRoot {
|
| // the display roots are automatically created this root is visible to the
|
| // window manager. When the display roots are not automatically created this
|
| // root has a single child that is created by the client. Use
|
| - // GetClientVisibileRoot() to get the root that is visible to the client.
|
| + // GetClientVisibleRoot() to get the root that is visible to the client.
|
| ServerWindow* root() { return root_.get(); }
|
| const ServerWindow* root() const { return root_.get(); }
|
|
|
| // See root() for details of this. This returns null until the client creates
|
| // the root.
|
| - ServerWindow* GetClientVisibileRoot() {
|
| + ServerWindow* GetClientVisibleRoot() {
|
| return const_cast<ServerWindow*>(
|
| const_cast<const WindowManagerDisplayRoot*>(this)
|
| - ->GetClientVisibileRoot());
|
| + ->GetClientVisibleRoot());
|
| }
|
| - const ServerWindow* GetClientVisibileRoot() const;
|
| + const ServerWindow* GetClientVisibleRoot() const;
|
|
|
| Display* display() { return display_; }
|
| const Display* display() const { return display_; }
|
|
|