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

Side by Side Diff: chrome/browser/ui/toolbar/recent_tabs_sub_menu_model.cc

Issue 227043004: Restored tabs should set their initial visibility (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add tests. Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/toolbar/recent_tabs_sub_menu_model.h" 5 #include "chrome/browser/ui/toolbar/recent_tabs_sub_menu_model.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/metrics/histogram.h" 8 #include "base/metrics/histogram.h"
9 #include "base/prefs/scoped_user_pref_update.h" 9 #include "base/prefs/scoped_user_pref_update.h"
10 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 DCHECK(window_items_idx >= 0 && 306 DCHECK(window_items_idx >= 0 &&
307 window_items_idx < static_cast<int>(local_window_items_.size())); 307 window_items_idx < static_cast<int>(local_window_items_.size()));
308 UMA_HISTOGRAM_ENUMERATION("WrenchMenu.RecentTabsSubMenu", RESTORE_WINDOW, 308 UMA_HISTOGRAM_ENUMERATION("WrenchMenu.RecentTabsSubMenu", RESTORE_WINDOW,
309 LIMIT_RECENT_TAB_ACTION); 309 LIMIT_RECENT_TAB_ACTION);
310 service->RestoreEntryById(delegate, local_window_items_[window_items_idx], 310 service->RestoreEntryById(delegate, local_window_items_[window_items_idx],
311 browser_->host_desktop_type(), disposition); 311 browser_->host_desktop_type(), disposition);
312 } 312 }
313 } 313 }
314 } 314 }
315 315
316 // static
317 int RecentTabsSubMenuModel::GetFirstRecentTabsCommandId() {
318 return WindowVectorIndexToCommandId(0);
319 }
320
316 const gfx::FontList* RecentTabsSubMenuModel::GetLabelFontListAt( 321 const gfx::FontList* RecentTabsSubMenuModel::GetLabelFontListAt(
317 int index) const { 322 int index) const {
318 int command_id = GetCommandIdAt(index); 323 int command_id = GetCommandIdAt(index);
319 if (command_id == kRecentlyClosedHeaderCommandId || 324 if (command_id == kRecentlyClosedHeaderCommandId ||
320 IsDeviceNameCommandId(command_id)) { 325 IsDeviceNameCommandId(command_id)) {
321 return &ui::ResourceBundle::GetSharedInstance().GetFontList( 326 return &ui::ResourceBundle::GetSharedInstance().GetFontList(
322 ui::ResourceBundle::BoldFont); 327 ui::ResourceBundle::BoldFont);
323 } 328 }
324 return NULL; 329 return NULL;
325 } 330 }
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 686
682 ui::MenuModelDelegate* menu_model_delegate = GetMenuModelDelegate(); 687 ui::MenuModelDelegate* menu_model_delegate = GetMenuModelDelegate();
683 if (menu_model_delegate) 688 if (menu_model_delegate)
684 menu_model_delegate->OnMenuStructureChanged(); 689 menu_model_delegate->OnMenuStructureChanged();
685 } 690 }
686 691
687 void RecentTabsSubMenuModel::TabRestoreServiceDestroyed( 692 void RecentTabsSubMenuModel::TabRestoreServiceDestroyed(
688 TabRestoreService* service) { 693 TabRestoreService* service) {
689 TabRestoreServiceChanged(service); 694 TabRestoreServiceChanged(service);
690 } 695 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698