| Index: ui/views/widget/desktop_aura/desktop_window_tree_host_x11.cc
|
| diff --git a/ui/views/widget/desktop_aura/desktop_window_tree_host_x11.cc b/ui/views/widget/desktop_aura/desktop_window_tree_host_x11.cc
|
| index 716fbb95b37d637f3d70eff880cad6863cd72b96..ed698c8a940cabfb3a62b311c4b8c86c58855c98 100644
|
| --- a/ui/views/widget/desktop_aura/desktop_window_tree_host_x11.cc
|
| +++ b/ui/views/widget/desktop_aura/desktop_window_tree_host_x11.cc
|
| @@ -757,10 +757,6 @@ void DesktopWindowTreeHostX11::Hide() {
|
| }
|
| }
|
|
|
| -void DesktopWindowTreeHostX11::ToggleFullScreen() {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| gfx::Rect DesktopWindowTreeHostX11::GetBounds() const {
|
| return bounds_;
|
| }
|
| @@ -804,13 +800,6 @@ void DesktopWindowTreeHostX11::SetBounds(const gfx::Rect& bounds) {
|
| compositor()->ScheduleRedrawRect(gfx::Rect(bounds.size()));
|
| }
|
|
|
| -gfx::Insets DesktopWindowTreeHostX11::GetInsets() const {
|
| - return gfx::Insets();
|
| -}
|
| -
|
| -void DesktopWindowTreeHostX11::SetInsets(const gfx::Insets& insets) {
|
| -}
|
| -
|
| gfx::Point DesktopWindowTreeHostX11::GetLocationOnNativeScreen() const {
|
| return bounds_.origin();
|
| }
|
| @@ -862,15 +851,6 @@ bool DesktopWindowTreeHostX11::QueryMouseLocation(
|
| win_y_return >= 0 && win_y_return < bounds_.height());
|
| }
|
|
|
| -bool DesktopWindowTreeHostX11::ConfineCursorToRootWindow() {
|
| - NOTIMPLEMENTED();
|
| - return false;
|
| -}
|
| -
|
| -void DesktopWindowTreeHostX11::UnConfineCursor() {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| void DesktopWindowTreeHostX11::SetCursorNative(gfx::NativeCursor cursor) {
|
| XDefineCursor(xdisplay_, xwindow_, cursor.platform());
|
| }
|
|
|