OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_ANDROID_THUMBNAIL_THUMBNAIL_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_THUMBNAIL_THUMBNAIL_H_ |
6 #define CHROME_BROWSER_ANDROID_THUMBNAIL_THUMBNAIL_H_ | 6 #define CHROME_BROWSER_ANDROID_THUMBNAIL_THUMBNAIL_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
10 #include "cc/resources/ui_resource_bitmap.h" | 10 #include "cc/resources/ui_resource_bitmap.h" |
11 #include "cc/resources/ui_resource_client.h" | 11 #include "cc/resources/ui_resource_client.h" |
12 #include "ui/android/resources/ui_resource_client_android.h" | 12 #include "ui/android/resources/ui_resource_client_android.h" |
13 #include "ui/gfx/geometry/size.h" | 13 #include "ui/gfx/geometry/size_f.h" |
14 | 14 |
15 namespace base { | 15 namespace base { |
16 class Time; | 16 class Time; |
17 } | 17 } |
18 | 18 |
19 namespace gfx { | 19 namespace gfx { |
20 class Size; | 20 class Size; |
21 } | 21 } |
22 | 22 |
23 namespace ui { | 23 namespace ui { |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 | 84 |
85 bool retrieved_; | 85 bool retrieved_; |
86 | 86 |
87 ui::UIResourceProvider* ui_resource_provider_; | 87 ui::UIResourceProvider* ui_resource_provider_; |
88 ThumbnailDelegate* thumbnail_delegate_; | 88 ThumbnailDelegate* thumbnail_delegate_; |
89 | 89 |
90 DISALLOW_COPY_AND_ASSIGN(Thumbnail); | 90 DISALLOW_COPY_AND_ASSIGN(Thumbnail); |
91 }; | 91 }; |
92 | 92 |
93 #endif // CHROME_BROWSER_ANDROID_THUMBNAIL_THUMBNAIL_H_ | 93 #endif // CHROME_BROWSER_ANDROID_THUMBNAIL_THUMBNAIL_H_ |
OLD | NEW |