Index: chrome/browser/android/thumbnail/thumbnail.h |
diff --git a/chrome/browser/android/thumbnail/thumbnail.h b/chrome/browser/android/thumbnail/thumbnail.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..417e378d5bb1f78aa8f3b4342f639d7930e83656 |
--- /dev/null |
+++ b/chrome/browser/android/thumbnail/thumbnail.h |
@@ -0,0 +1,87 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_BROWSER_ANDROID_THUMBNAIL_THUMBNAIL_H_ |
+#define CHROME_BROWSER_ANDROID_THUMBNAIL_THUMBNAIL_H_ |
+ |
+#include "base/memory/ref_counted.h" |
+#include "base/time/time.h" |
+#include "cc/resources/ui_resource_bitmap.h" |
+#include "cc/resources/ui_resource_client.h" |
+#include "content/public/browser/android/ui_resource_client_android.h" |
+#include "ui/gfx/geometry/size.h" |
+ |
+namespace base { |
+class Time; |
+} |
+ |
+namespace content { |
+class UIResourceProvider; |
+} |
+ |
+namespace gfx { |
+class Size; |
+} |
+ |
+typedef int TabId; |
+ |
+class Thumbnail; |
+ |
+class ThumbnailManager { |
David Trainor- moved to gerrit
2014/07/14 20:30:45
ThumbnailDelegate maybe?
powei
2014/07/15 20:06:09
Done.
|
+ public: |
+ virtual void InvalidateCachedThumbnail(const Thumbnail& thumbnail) = 0; |
+ virtual ~ThumbnailManager() {} |
+}; |
+ |
+class Thumbnail : public content::UIResourceClientAndroid { |
+ public: |
+ Thumbnail(); |
+ Thumbnail(TabId tab_id, |
+ const base::Time& time_stamp, |
+ float scale, |
+ content::UIResourceProvider* ui_resource_provider, |
+ ThumbnailManager* thumbnail_manager); |
+ ~Thumbnail(); |
+ |
+ TabId tab_id() const { return tab_id_; } |
+ base::Time time_stamp() const { return time_stamp_; } |
+ float scale() const { return scale_; } |
+ cc::UIResourceId ui_resource_id() const { return ui_resource_id_; } |
+ gfx::SizeF GetScaledContentSize() const { return scaled_content_size_; } |
David Trainor- moved to gerrit
2014/07/14 20:30:46
const gfx::SizeF& and scaled_content_size (or put
powei
2014/07/15 20:06:09
Done.
|
+ gfx::SizeF GetScaledDataSize() const { return scaled_data_size_; } |
+ |
+ void SetBitmap(const SkBitmap& bitmap); |
+ void SetCompressedBitmap(skia::RefPtr<SkPixelRef> compressed_bitmap, |
+ gfx::Size content_size); |
David Trainor- moved to gerrit
2014/07/14 20:30:45
const gfx::Size&
powei
2014/07/15 20:06:09
Done.
|
+ void CreateUIResource(); |
+ |
+ // content::UIResourceClient implementation. |
+ virtual cc::UIResourceBitmap GetBitmap(cc::UIResourceId uid, |
+ bool resource_lost) OVERRIDE; |
+ |
+ // content::UIResourceClientAndroid implementation. |
+ virtual void UIResourceIsInvalid() OVERRIDE; |
+ |
+ Thumbnail& operator=(const Thumbnail& rhs); |
+ |
+ protected: |
+ void ClearUIResourceId(); |
+ |
+ TabId tab_id_; |
+ base::Time time_stamp_; |
+ float scale_; |
+ |
+ gfx::SizeF scaled_content_size_; |
+ gfx::SizeF scaled_data_size_; |
+ |
+ cc::UIResourceBitmap bitmap_; |
+ cc::UIResourceId ui_resource_id_; |
+ |
+ bool retrieved_; |
+ |
+ content::UIResourceProvider* ui_resource_provider_; |
+ ThumbnailManager* thumbnail_manager_; |
+}; |
+ |
+#endif // CHROME_BROWSER_ANDROID_THUMBNAIL_THUMBNAIL_H_ |