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

Unified Diff: chrome/browser/ui/views/tabs/tab_unittest.cc

Issue 2690443002: cros-md: Remove the non-MD immersive mode code paths (Closed)
Patch Set: rebase & code comments Created 3 years, 10 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/ui/views/tabs/tab_strip_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/tabs/tab_unittest.cc
diff --git a/chrome/browser/ui/views/tabs/tab_unittest.cc b/chrome/browser/ui/views/tabs/tab_unittest.cc
index 528b8026222312f8487f5099b45e5bc2ab5e2b90..5b6c4703021309834e8392c45c90b02c85c4b1f1 100644
--- a/chrome/browser/ui/views/tabs/tab_unittest.cc
+++ b/chrome/browser/ui/views/tabs/tab_unittest.cc
@@ -26,7 +26,6 @@ class FakeTabController : public TabController {
public:
FakeTabController() {}
- void set_immersive_style(bool value) { immersive_style_ = value; }
void set_active_tab(bool value) { active_tab_ = value; }
void set_paint_throbber_to_layer(bool value) {
paint_throbber_to_layer_ = value;
@@ -73,7 +72,6 @@ class FakeTabController : public TabController {
bool CanPaintThrobberToLayer() const override {
return paint_throbber_to_layer_;
}
- bool IsImmersiveStyle() const override { return immersive_style_; }
SkColor GetToolbarTopSeparatorColor() const override { return SK_ColorBLACK; }
int GetBackgroundResourceId(bool* custom_image) const override {
*custom_image = false;
@@ -87,7 +85,6 @@ class FakeTabController : public TabController {
private:
ui::ListSelectionModel selection_model_;
- bool immersive_style_ = false;
bool active_tab_ = false;
bool paint_throbber_to_layer_ = true;
« no previous file with comments | « chrome/browser/ui/views/tabs/tab_strip_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698