OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_VIEWS_FRAME_BROWSER_FRAME_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_FRAME_BROWSER_FRAME_H_ |
6 #define CHROME_BROWSER_VIEWS_FRAME_BROWSER_FRAME_H_ | 6 #define CHROME_BROWSER_VIEWS_FRAME_BROWSER_FRAME_H_ |
7 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #include "views/window/non_client_view.h" | 9 #include "views/window/non_client_view.h" |
10 | 10 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 // left edge of the window. Used in our Non-Client View's Layout. | 46 // left edge of the window. Used in our Non-Client View's Layout. |
47 virtual int GetMinimizeButtonOffset() const = 0; | 47 virtual int GetMinimizeButtonOffset() const = 0; |
48 | 48 |
49 // Retrieves the bounds, in non-client view coordinates for the specified | 49 // Retrieves the bounds, in non-client view coordinates for the specified |
50 // TabStrip. | 50 // TabStrip. |
51 virtual gfx::Rect GetBoundsForTabStrip(TabStrip* tabstrip) const = 0; | 51 virtual gfx::Rect GetBoundsForTabStrip(TabStrip* tabstrip) const = 0; |
52 | 52 |
53 // Tells the frame to update the throbber. | 53 // Tells the frame to update the throbber. |
54 virtual void UpdateThrobber(bool running) = 0; | 54 virtual void UpdateThrobber(bool running) = 0; |
55 | 55 |
| 56 // Tells the frame to continue a drag detached tab operation. |
| 57 virtual void ContinueDraggingDetachedTab() = 0; |
| 58 |
56 // Returns the theme provider for this frame. | 59 // Returns the theme provider for this frame. |
57 virtual ThemeProvider* GetThemeProviderForFrame() const = 0; | 60 virtual ThemeProvider* GetThemeProviderForFrame() const = 0; |
58 }; | 61 }; |
59 | 62 |
60 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_FRAME_H_ | 63 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_FRAME_H_ |
OLD | NEW |