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

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

Issue 2479683006: [Sync] Add support for identifying tabbed activites (Closed)
Patch Set: Self review Created 4 years, 1 month 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_list_unittest.cc
diff --git a/chrome/browser/ui/android/tab_model/tab_model_list_unittest.cc b/chrome/browser/ui/android/tab_model/tab_model_list_unittest.cc
index 78e0ef213a93e97a04fa4cc3ab3bc2c748140c38..653d3f197aaf9395e0ae1654e63e77e84ab0572e 100644
--- a/chrome/browser/ui/android/tab_model/tab_model_list_unittest.cc
+++ b/chrome/browser/ui/android/tab_model/tab_model_list_unittest.cc
@@ -15,7 +15,8 @@ class TabModelListTest : public ChromeRenderViewHostTestHarness {};
class TestTabModel : public TabModel {
public:
- explicit TestTabModel(Profile* profile) : TabModel(profile), tab_count_(0) {}
+ explicit TestTabModel(Profile* profile)
+ : TabModel(profile, false), tab_count_(0) {}
int GetTabCount() const override { return tab_count_; }
int GetActiveIndex() const override { return 0; }
« no previous file with comments | « chrome/browser/ui/android/tab_model/tab_model_jni_bridge.cc ('k') | chrome/browser/ui/android/tab_model/tab_model_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698