| 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> |
| 10 |
| 9 #include <list> | 11 #include <list> |
| 10 | 12 |
| 11 #include "base/waitable_event.h" | |
| 12 #include "chrome/browser/tabs/tab_strip_model.h" | 13 #include "chrome/browser/tabs/tab_strip_model.h" |
| 13 #include "gfx/insets.h" | 14 #include "gfx/insets.h" |
| 14 | 15 |
| 15 namespace gfx { | 16 namespace gfx { |
| 16 class Size; | 17 class Size; |
| 17 } | 18 } |
| 18 class TabContents; | 19 class TabContents; |
| 19 class AeroPeekWindow; | 20 class AeroPeekWindow; |
| 20 class SkBitmap; | 21 class SkBitmap; |
| 21 | 22 |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 // preview image can use transparent colors only in the frame area. | 178 // preview image can use transparent colors only in the frame area. |
| 178 int toolbar_top_; | 179 int toolbar_top_; |
| 179 | 180 |
| 180 // The margins of the "user-perceived content area". | 181 // The margins of the "user-perceived content area". |
| 181 // This value is used for pasting a tab image onto this "user-perceived | 182 // This value is used for pasting a tab image onto this "user-perceived |
| 182 // content area" when creating a preview image. | 183 // content area" when creating a preview image. |
| 183 gfx::Insets content_insets_; | 184 gfx::Insets content_insets_; |
| 184 }; | 185 }; |
| 185 | 186 |
| 186 #endif // CHROME_BROWSER_AEROPEEK_MANAGER_H_ | 187 #endif // CHROME_BROWSER_AEROPEEK_MANAGER_H_ |
| OLD | NEW |