From c6f9cc2dda4fc4541d0ee4bc91491ed2a6ef57cd Mon Sep 17 00:00:00 2001 From: "ben@chromium.org" Date: Sat, 7 Nov 2009 23:12:38 +0000 Subject: Move all the stuff relating to detached tab dragging out of BrowserFrameWin and onto the TabStrip2 object. It was mostly cross platform anyway.Adds APIs to Widget that:- allow a Widget to be obtained for a given gfx::NativeView- allow native properties to be set on a Widget.Adds an API to Window that lets the caller convert the window's appearance into a lightly transparent transient looking thing for dragging.BUG=noneTEST=none Review URL: http://codereview.chromium.org/149440 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31394 0039d316-1c4b-4281-b951-d872f2087c98 --- views/window/window_gtk.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'views/window/window_gtk.cc') diff --git a/views/window/window_gtk.cc b/views/window/window_gtk.cc index fff4e74..2cacccd 100644 --- a/views/window/window_gtk.cc +++ b/views/window/window_gtk.cc @@ -185,6 +185,10 @@ bool WindowGtk::IsFullscreen() const { return window_state_ & GDK_WINDOW_STATE_FULLSCREEN; } +void WindowGtk::SetUseDragFrame(bool use_drag_frame) { + NOTIMPLEMENTED(); +} + void WindowGtk::EnableClose(bool enable) { gtk_window_set_deletable(GetNativeWindow(), enable); } -- cgit v1.1