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

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

Issue 262543002: android: add ThumbnailCache (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@codec
Patch Set: renamed ThumbnailCacheCore to ThumbnailCache Created 6 years, 7 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
« no previous file with comments | « chrome/browser/android/tab_android.h ('k') | chrome/browser/android/thumbnail_cache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/tab_thumbnail_provider.h
diff --git a/chrome/browser/android/tab_thumbnail_provider.h b/chrome/browser/android/tab_thumbnail_provider.h
new file mode 100644
index 0000000000000000000000000000000000000000..a3c2b8b55775a3af337c33ce2bc2d4b0b8c6cd7c
--- /dev/null
+++ b/chrome/browser/android/tab_thumbnail_provider.h
@@ -0,0 +1,21 @@
+// 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_TAB_THUMBNAIL_PROVIDER_H_
+#define CHROME_BROWSER_ANDROID_TAB_THUMBNAIL_PROVIDER_H_
+
+class GURL;
+
+namespace content {
+class ContentViewCore;
+}
+
+class TabThumbnailProvider {
David Trainor- moved to gerrit 2014/06/17 08:12:10 We might not need this interface at this point...
powei 2014/06/19 23:05:58 Done. Removed in the next ps.
+ public:
+ virtual int GetAndroidId() const = 0;
+ virtual content::ContentViewCore* GetContentViewCore() const = 0;
+ virtual GURL GetURL() const = 0;
+};
+
+#endif // CHROME_BROWSER_ANDROID_TAB_THUMBNAIL_PROVIDER_H_
« no previous file with comments | « chrome/browser/android/tab_android.h ('k') | chrome/browser/android/thumbnail_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698