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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_ANDROID_TAB_THUMBNAIL_PROVIDER_H_
6 #define CHROME_BROWSER_ANDROID_TAB_THUMBNAIL_PROVIDER_H_
7
8 class GURL;
9
10 namespace content {
11 class ContentViewCore;
12 }
13
14 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.
15 public:
16 virtual int GetAndroidId() const = 0;
17 virtual content::ContentViewCore* GetContentViewCore() const = 0;
18 virtual GURL GetURL() const = 0;
19 };
20
21 #endif // CHROME_BROWSER_ANDROID_TAB_THUMBNAIL_PROVIDER_H_
OLDNEW
« 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