Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_ | |
| OLD | NEW |