diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-05 19:03:25 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-05 19:03:25 +0000 |
commit | d6598c050acb33ef7a64d32b116a6f10ba941329 (patch) | |
tree | 3e1e01c8a79b9e787f39fae834853b123d546276 /chrome/browser/browser_window.h | |
parent | 49a608d55bdb77491ea5dfe605a924fd1cb88d63 (diff) | |
download | chromium_src-d6598c050acb33ef7a64d32b116a6f10ba941329.zip chromium_src-d6598c050acb33ef7a64d32b116a6f10ba941329.tar.gz chromium_src-d6598c050acb33ef7a64d32b116a6f10ba941329.tar.bz2 |
This is r4523, with a few changes to make things work under Vista.
- Explicitly set_delegate(NULL) before releasing a TabContents. (I think
the order messages are getting handled is different from XP; this only
seems neccessary under Vista.)
- r4523 and someone elses change added entries to theme_resources.rc at
roughly the same time, causing happy fun crashes.
- Roll in sgk's SConscript fix.
Review URL: http://codereview.chromium.org/9373
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4799 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_window.h')
-rw-r--r-- | chrome/browser/browser_window.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/chrome/browser/browser_window.h b/chrome/browser/browser_window.h index 4012ddf..6f0e6ec 100644 --- a/chrome/browser/browser_window.h +++ b/chrome/browser/browser_window.h @@ -92,18 +92,6 @@ class BrowserWindow { // TODO(beng): REMOVE virtual void ShowTabContents(TabContents* contents) {} - // Continue a drag gesture that began with a constrained window. When the - // user drags a constrained window such that their mouse pointer leaves the - // bounds of the constraining HWND, the window is detached and the drag - // gesture continues except for this top level frame. - // |mouse_pt| is the position of the cursor in screen coordinates. - // |frame_component| is the component returned by WM_NCHITTEST for |mouse_pt| - // on the constrained window. This is passed to ensure we initiate the - // correct action (move, resize, etc). - virtual void ContinueDetachConstrainedWindowDrag( - const gfx::Point& mouse_pt, - int frame_component) = 0; - // Sizes the frame to match the specified desired bounds for the contents. // |contents_bounds| are in screen coordinates. // TODO(beng): REMOVE @@ -189,4 +177,3 @@ class BrowserWindow { }; #endif // CHROME_BROWSER_BROWSER_WINDOW_H__ - |