Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1571)

Unified Diff: chrome/browser/android/thumbnail/thumbnail.h

Issue 262543002: android: add ThumbnailCache (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@codec
Patch Set: added DEPS file Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..394bf95e789916dac7d0ee5ee5aef61aa2cebe8a
--- /dev/null
+++ b/chrome/browser/android/thumbnail/thumbnail.h
@@ -0,0 +1,93 @@
+// 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 ThumbnailDelegate {
+ public:
+ virtual void InvalidateCachedThumbnail(Thumbnail* thumbnail) = 0;
+ virtual ~ThumbnailDelegate() {}
+};
+
+class Thumbnail : public content::UIResourceClientAndroid {
+ public:
+ static scoped_ptr<Thumbnail> Create(
+ TabId tab_id,
+ const base::Time& time_stamp,
+ float scale,
+ content::UIResourceProvider* ui_resource_provider,
+ ThumbnailDelegate* thumbnail_delegate);
+ virtual ~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_; }
+ const gfx::SizeF& scaled_content_size() const { return scaled_content_size_; }
+ const gfx::SizeF& scaled_data_size() const { return scaled_data_size_; }
+
+ void SetBitmap(const SkBitmap& bitmap);
+ void SetCompressedBitmap(skia::RefPtr<SkPixelRef> compressed_bitmap,
+ const gfx::Size& content_size);
+ void CreateUIResource();
+
+ // content::UIResourceClient implementation.
+ virtual cc::UIResourceBitmap GetBitmap(cc::UIResourceId uid,
+ bool resource_lost) OVERRIDE;
+
+ // content::UIResourceClientAndroid implementation.
+ virtual void UIResourceIsInvalid() OVERRIDE;
+
+ protected:
+ Thumbnail(TabId tab_id,
+ const base::Time& time_stamp,
+ float scale,
+ content::UIResourceProvider* ui_resource_provider,
+ ThumbnailDelegate* thumbnail_delegate);
+
+ 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_;
+ ThumbnailDelegate* thumbnail_delegate_;
+
+ DISALLOW_COPY_AND_ASSIGN(Thumbnail);
+};
+
+#endif // CHROME_BROWSER_ANDROID_THUMBNAIL_THUMBNAIL_H_
« no previous file with comments | « chrome/browser/android/thumbnail/scoped_ptr_expiring_cache_unittest.cc ('k') | chrome/browser/android/thumbnail/thumbnail.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698