OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_AEROPEEK_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_AEROPEEK_MANAGER_H_ |
6 #define CHROME_BROWSER_AEROPEEK_MANAGER_H_ | 6 #define CHROME_BROWSER_AEROPEEK_MANAGER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <windows.h> | 9 #include <windows.h> |
10 | 10 |
11 #include <list> | 11 #include <list> |
12 | 12 |
13 #include "chrome/browser/tabs/tab_strip_model_observer.h" | 13 #include "chrome/browser/tabs/tab_strip_model_observer.h" |
14 #include "gfx/insets.h" | 14 #include "ui/gfx/insets.h" |
15 | 15 |
16 namespace gfx { | 16 namespace gfx { |
17 class Size; | 17 class Size; |
18 } | 18 } |
19 class AeroPeekWindow; | 19 class AeroPeekWindow; |
20 class SkBitmap; | 20 class SkBitmap; |
21 class TabContents; | 21 class TabContents; |
22 | 22 |
23 // A class which defines interfaces called from AeroPeekWindow. | 23 // A class which defines interfaces called from AeroPeekWindow. |
24 // This class is used for dispatching an event received by a thumbnail window | 24 // This class is used for dispatching an event received by a thumbnail window |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 // preview image can use transparent colors only in the frame area. | 180 // preview image can use transparent colors only in the frame area. |
181 int toolbar_top_; | 181 int toolbar_top_; |
182 | 182 |
183 // The margins of the "user-perceived content area". | 183 // The margins of the "user-perceived content area". |
184 // This value is used for pasting a tab image onto this "user-perceived | 184 // This value is used for pasting a tab image onto this "user-perceived |
185 // content area" when creating a preview image. | 185 // content area" when creating a preview image. |
186 gfx::Insets content_insets_; | 186 gfx::Insets content_insets_; |
187 }; | 187 }; |
188 | 188 |
189 #endif // CHROME_BROWSER_AEROPEEK_MANAGER_H_ | 189 #endif // CHROME_BROWSER_AEROPEEK_MANAGER_H_ |
OLD | NEW |