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

Unified Diff: chrome/browser/ui/android/tab_model/tab_model_unittest.cc

Issue 15055003: Do not submit: high level overview patch. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix build. Created 7 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
Index: chrome/browser/ui/android/tab_model/tab_model_unittest.cc
diff --git a/chrome/browser/ui/android/tab_model/tab_model_unittest.cc b/chrome/browser/ui/android/tab_model/tab_model_unittest.cc
index b6395584a8b9b20770c444da35deb0e3070d734f..65082d8fbcebd392ee0a56007ad06a46faf986d5 100644
--- a/chrome/browser/ui/android/tab_model/tab_model_unittest.cc
+++ b/chrome/browser/ui/android/tab_model/tab_model_unittest.cc
@@ -33,7 +33,10 @@ class TestTabModel : public TabModel {
content::WebContents* GetWebContentsAt(int index) const OVERRIDE {
return NULL;
}
- SessionID::id_type GetTabIdAt(int index) const OVERRIDE { return 0; }
+ browser_sync::SyncedTabDelegate* GetTabAt(int index) const OVERRIDE {
+ return NULL;
+ }
+
void CreateTab(content::WebContents* web_contents) OVERRIDE {}
bool IsSessionRestoreInProgress() const OVERRIDE { return false; }
void OpenClearBrowsingData() const OVERRIDE {}

Powered by Google App Engine
This is Rietveld 408576698