1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
|
// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/toolbar/recent_tabs_sub_menu_model.h"
#include "base/bind.h"
#include "base/metrics/histogram.h"
#include "base/prefs/scoped_user_pref_update.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/app/chrome_command_ids.h"
#include "chrome/browser/favicon/favicon_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/search/search.h"
#include "chrome/browser/sessions/session_restore.h"
#include "chrome/browser/sessions/tab_restore_service.h"
#include "chrome/browser/sessions/tab_restore_service_delegate.h"
#include "chrome/browser/sessions/tab_restore_service_factory.h"
#include "chrome/browser/sync/profile_sync_service.h"
#include "chrome/browser/sync/profile_sync_service_factory.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_commands.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/browser/ui/toolbar/wrench_menu_model.h"
#include "chrome/grit/generated_resources.h"
#include "components/favicon_base/favicon_types.h"
#include "components/sync_driver/glue/synced_session.h"
#include "components/sync_driver/open_tabs_ui_delegate.h"
#include "content/public/browser/user_metrics.h"
#include "grit/browser_resources.h"
#include "grit/theme_resources.h"
#include "ui/base/accelerators/accelerator.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/resources/grit/ui_resources.h"
#if defined(USE_ASH)
#include "ash/accelerators/accelerator_table.h"
#endif // defined(USE_ASH)
namespace {
// Initial comamnd ID's for navigatable (and hence executable) tab/window menu
// items. The menumodel and storage structures are not 1-1:
// - menumodel has "Recently closed" header, "No tabs from other devices",
// device section headers, separators, local and other devices' tab items, and
// local window items.
// - |local_tab_navigation_items_| and |other_devices_tab_navigation_items_|
// only have navigatabale/executable tab items.
// - |local_window_items_| only has executable open window items.
// Using initial command IDs for local tab, local window and other devices' tab
// items makes it easier and less error-prone to manipulate the menumodel and
// storage structures. These ids must be bigger than the maximum possible
// number of items in the menumodel, so that index of the last menu item doesn't
// clash with these values when menu items are retrieved via
// GetIndexOfCommandId().
// The range of all command ID's used in RecentTabsSubMenuModel, including the
// "Recently closed" headers, must be between
// |WrenchMenuModel::kMinRecentTabsCommandId| i.e. 1001 and 1200
// (|WrenchMenuModel::kMaxRecentTabsCommandId|) inclusively.
const int kFirstLocalTabCommandId = WrenchMenuModel::kMinRecentTabsCommandId;
const int kFirstLocalWindowCommandId = 1031;
const int kFirstOtherDevicesTabCommandId = 1051;
const int kMinDeviceNameCommandId = 1100;
const int kMaxDeviceNameCommandId = 1110;
// The maximum number of local recently closed entries (tab or window) to be
// shown in the menu.
const int kMaxLocalEntries = 8;
// Index of the separator that follows the history menu item. Used as a
// reference position for inserting local entries.
const int kHistorySeparatorIndex = 1;
// Comparator function for use with std::sort that will sort sessions by
// descending modified_time (i.e., most recent first).
bool SortSessionsByRecency(const sync_driver::SyncedSession* s1,
const sync_driver::SyncedSession* s2) {
return s1->modified_time > s2->modified_time;
}
// Returns true if the command id identifies a tab menu item.
bool IsTabModelCommandId(int command_id) {
return ((command_id >= kFirstLocalTabCommandId &&
command_id < kFirstLocalWindowCommandId) ||
(command_id >= kFirstOtherDevicesTabCommandId &&
command_id < kMinDeviceNameCommandId));
}
// Returns true if the command id identifies a window menu item.
bool IsWindowModelCommandId(int command_id) {
return command_id >= kFirstLocalWindowCommandId &&
command_id < kFirstOtherDevicesTabCommandId;
}
bool IsDeviceNameCommandId(int command_id) {
return command_id >= kMinDeviceNameCommandId &&
command_id <= kMaxDeviceNameCommandId;
}
// Convert |tab_vector_index| to command id of menu item, with
// |first_command_id| as the base command id.
int TabVectorIndexToCommandId(int tab_vector_index, int first_command_id) {
int command_id = tab_vector_index + first_command_id;
DCHECK(IsTabModelCommandId(command_id));
return command_id;
}
// Convert |window_vector_index| to command id of menu item.
int WindowVectorIndexToCommandId(int window_vector_index) {
int command_id = window_vector_index + kFirstLocalWindowCommandId;
DCHECK(IsWindowModelCommandId(command_id));
return command_id;
}
// Convert |command_id| of menu item to index in |local_window_items_|.
int CommandIdToWindowVectorIndex(int command_id) {
DCHECK(IsWindowModelCommandId(command_id));
return command_id - kFirstLocalWindowCommandId;
}
} // namespace
enum RecentTabAction {
LOCAL_SESSION_TAB = 0,
OTHER_DEVICE_TAB,
RESTORE_WINDOW,
SHOW_MORE,
LIMIT_RECENT_TAB_ACTION
};
// An element in |RecentTabsSubMenuModel::local_tab_navigation_items_| or
// |RecentTabsSubMenuModel::other_devices_tab_navigation_items_| that stores
// the navigation information of a local or other devices' tab required to
// restore the tab.
struct RecentTabsSubMenuModel::TabNavigationItem {
TabNavigationItem() : tab_id(-1) {}
TabNavigationItem(const std::string& session_tag,
const SessionID::id_type& tab_id,
const base::string16& title,
const GURL& url)
: session_tag(session_tag),
tab_id(tab_id),
title(title),
url(url) {}
// For use by std::set for sorting.
bool operator<(const TabNavigationItem& other) const {
return url < other.url;
}
// Empty for local tabs, non-empty for other devices' tabs.
std::string session_tag;
SessionID::id_type tab_id; // -1 for invalid, >= 0 otherwise.
base::string16 title;
GURL url;
};
const int RecentTabsSubMenuModel::kRecentlyClosedHeaderCommandId = 1120;
const int RecentTabsSubMenuModel::kDisabledRecentlyClosedHeaderCommandId = 1121;
RecentTabsSubMenuModel::RecentTabsSubMenuModel(
ui::AcceleratorProvider* accelerator_provider,
Browser* browser,
sync_driver::OpenTabsUIDelegate* open_tabs_delegate)
: ui::SimpleMenuModel(this),
browser_(browser),
open_tabs_delegate_(open_tabs_delegate),
last_local_model_index_(kHistorySeparatorIndex),
default_favicon_(ui::ResourceBundle::GetSharedInstance().
GetNativeImageNamed(IDR_DEFAULT_FAVICON)),
weak_ptr_factory_(this) {
// Invoke asynchronous call to load tabs from local last session, which does
// nothing if the tabs have already been loaded or they shouldn't be loaded.
// TabRestoreServiceChanged() will be called after the tabs are loaded.
TabRestoreService* service =
TabRestoreServiceFactory::GetForProfile(browser_->profile());
if (service) {
service->LoadTabsFromLastSession();
// TODO(sail): enable this when mac implements the dynamic menu, together with
// MenuModelDelegate::MenuStructureChanged().
#if !defined(OS_MACOSX)
service->AddObserver(this);
#endif
}
Build();
// Retrieve accelerator key for IDC_RESTORE_TAB now, because on ASH, it's not
// defined in |accelerator_provider|, but in shell, so simply retrieve it now
// for all ASH and non-ASH for use in |GetAcceleratorForCommandId|.
#if defined(USE_ASH)
for (size_t i = 0; i < ash::kAcceleratorDataLength; ++i) {
const ash::AcceleratorData& accel_data = ash::kAcceleratorData[i];
if (accel_data.action == ash::RESTORE_TAB) {
reopen_closed_tab_accelerator_ = ui::Accelerator(accel_data.keycode,
accel_data.modifiers);
break;
}
}
#else
if (accelerator_provider) {
accelerator_provider->GetAcceleratorForCommandId(
IDC_RESTORE_TAB, &reopen_closed_tab_accelerator_);
}
#endif // defined(USE_ASH)
if (accelerator_provider) {
accelerator_provider->GetAcceleratorForCommandId(
IDC_SHOW_HISTORY, &show_history_accelerator_);
}
}
RecentTabsSubMenuModel::~RecentTabsSubMenuModel() {
TabRestoreService* service =
TabRestoreServiceFactory::GetForProfile(browser_->profile());
if (service)
service->RemoveObserver(this);
}
bool RecentTabsSubMenuModel::IsCommandIdChecked(int command_id) const {
return false;
}
bool RecentTabsSubMenuModel::IsCommandIdEnabled(int command_id) const {
if (command_id == kRecentlyClosedHeaderCommandId ||
command_id == kDisabledRecentlyClosedHeaderCommandId ||
command_id == IDC_RECENT_TABS_NO_DEVICE_TABS ||
IsDeviceNameCommandId(command_id)) {
return false;
}
return true;
}
bool RecentTabsSubMenuModel::GetAcceleratorForCommandId(
int command_id, ui::Accelerator* accelerator) {
// If there are no recently closed items, we show the accelerator beside
// the header, otherwise, we show it beside the first item underneath it.
int index_in_menu = GetIndexOfCommandId(command_id);
int header_index = GetIndexOfCommandId(kRecentlyClosedHeaderCommandId);
if ((command_id == kDisabledRecentlyClosedHeaderCommandId ||
(header_index != -1 && index_in_menu == header_index + 1)) &&
reopen_closed_tab_accelerator_.key_code() != ui::VKEY_UNKNOWN) {
*accelerator = reopen_closed_tab_accelerator_;
return true;
}
if (command_id == IDC_SHOW_HISTORY) {
*accelerator = show_history_accelerator_;
return true;
}
return false;
}
void RecentTabsSubMenuModel::ExecuteCommand(int command_id, int event_flags) {
if (command_id == IDC_SHOW_HISTORY) {
UMA_HISTOGRAM_ENUMERATION("WrenchMenu.RecentTabsSubMenu", SHOW_MORE,
LIMIT_RECENT_TAB_ACTION);
// We show all "other devices" on the history page.
chrome::ExecuteCommandWithDisposition(browser_, IDC_SHOW_HISTORY,
ui::DispositionFromEventFlags(event_flags));
return;
}
DCHECK_NE(IDC_RECENT_TABS_NO_DEVICE_TABS, command_id);
DCHECK(!IsDeviceNameCommandId(command_id));
WindowOpenDisposition disposition =
ui::DispositionFromEventFlags(event_flags);
if (disposition == CURRENT_TAB) // Force to open a new foreground tab.
disposition = NEW_FOREGROUND_TAB;
TabRestoreService* service =
TabRestoreServiceFactory::GetForProfile(browser_->profile());
TabRestoreServiceDelegate* delegate =
TabRestoreServiceDelegate::FindDelegateForWebContents(
browser_->tab_strip_model()->GetActiveWebContents());
if (IsTabModelCommandId(command_id)) {
TabNavigationItems* tab_items = NULL;
int tab_items_idx = CommandIdToTabVectorIndex(command_id, &tab_items);
const TabNavigationItem& item = (*tab_items)[tab_items_idx];
DCHECK(item.tab_id > -1 && item.url.is_valid());
if (item.session_tag.empty()) { // Restore tab of local session.
if (service && delegate) {
content::RecordAction(
base::UserMetricsAction("WrenchMenu_OpenRecentTabFromLocal"));
UMA_HISTOGRAM_ENUMERATION("WrenchMenu.RecentTabsSubMenu",
LOCAL_SESSION_TAB, LIMIT_RECENT_TAB_ACTION);
service->RestoreEntryById(delegate, item.tab_id,
browser_->host_desktop_type(), disposition);
}
} else { // Restore tab of session from other devices.
sync_driver::OpenTabsUIDelegate* open_tabs = GetOpenTabsUIDelegate();
if (!open_tabs)
return;
const sessions::SessionTab* tab;
if (!open_tabs->GetForeignTab(item.session_tag, item.tab_id, &tab))
return;
if (tab->navigations.empty())
return;
content::RecordAction(
base::UserMetricsAction("WrenchMenu_OpenRecentTabFromDevice"));
UMA_HISTOGRAM_ENUMERATION("WrenchMenu.RecentTabsSubMenu",
OTHER_DEVICE_TAB, LIMIT_RECENT_TAB_ACTION);
SessionRestore::RestoreForeignSessionTab(
browser_->tab_strip_model()->GetActiveWebContents(),
*tab, disposition);
}
} else {
DCHECK(IsWindowModelCommandId(command_id));
if (service && delegate) {
int window_items_idx = CommandIdToWindowVectorIndex(command_id);
DCHECK(window_items_idx >= 0 &&
window_items_idx < static_cast<int>(local_window_items_.size()));
content::RecordAction(
base::UserMetricsAction("WrenchMenu_OpenRecentWindow"));
UMA_HISTOGRAM_ENUMERATION("WrenchMenu.RecentTabsSubMenu", RESTORE_WINDOW,
LIMIT_RECENT_TAB_ACTION);
service->RestoreEntryById(delegate, local_window_items_[window_items_idx],
browser_->host_desktop_type(), disposition);
}
}
UMA_HISTOGRAM_MEDIUM_TIMES("WrenchMenu.TimeToAction.OpenRecentTab",
menu_opened_timer_.Elapsed());
UMA_HISTOGRAM_ENUMERATION("WrenchMenu.MenuAction", MENU_ACTION_RECENT_TAB,
LIMIT_MENU_ACTION);
}
int RecentTabsSubMenuModel::GetFirstRecentTabsCommandId() {
return WindowVectorIndexToCommandId(0);
}
const gfx::FontList* RecentTabsSubMenuModel::GetLabelFontListAt(
int index) const {
int command_id = GetCommandIdAt(index);
if (command_id == kRecentlyClosedHeaderCommandId ||
IsDeviceNameCommandId(command_id)) {
return &ui::ResourceBundle::GetSharedInstance().GetFontList(
ui::ResourceBundle::BoldFont);
}
return NULL;
}
int RecentTabsSubMenuModel::GetMaxWidthForItemAtIndex(int item_index) const {
int command_id = GetCommandIdAt(item_index);
if (command_id == IDC_RECENT_TABS_NO_DEVICE_TABS ||
command_id == kRecentlyClosedHeaderCommandId ||
command_id == kDisabledRecentlyClosedHeaderCommandId) {
return -1;
}
return 320;
}
bool RecentTabsSubMenuModel::GetURLAndTitleForItemAtIndex(
int index,
std::string* url,
base::string16* title) {
int command_id = GetCommandIdAt(index);
if (IsTabModelCommandId(command_id)) {
TabNavigationItems* tab_items = NULL;
int tab_items_idx = CommandIdToTabVectorIndex(command_id, &tab_items);
const TabNavigationItem& item = (*tab_items)[tab_items_idx];
*url = item.url.possibly_invalid_spec();
*title = item.title;
return true;
}
return false;
}
void RecentTabsSubMenuModel::Build() {
// The menu contains:
// - History to open the full history tab.
// - Separator
// - Recently closed header, then list of local recently closed tabs/windows,
// then separator
// - device 1 section header, then list of tabs from device, then separator
// - device 2 section header, then list of tabs from device, then separator
// - device 3 section header, then list of tabs from device, then separator
// |local_tab_navigation_items_| and |other_devices_tab_navigation_items_|
// only contain navigatable (and hence executable) tab items for local
// recently closed tabs and tabs from other devices respectively.
// |local_window_items_| contains the local recently closed windows.
InsertItemWithStringIdAt(0, IDC_SHOW_HISTORY, IDS_SHOW_HISTORY);
InsertSeparatorAt(1, ui::NORMAL_SEPARATOR);
BuildLocalEntries();
BuildTabsFromOtherDevices();
}
void RecentTabsSubMenuModel::BuildLocalEntries() {
last_local_model_index_ = kHistorySeparatorIndex;
// All local items use InsertItem*At() to append or insert a menu item.
// We're appending if building the entries for the first time i.e. invoked
// from Constructor(), inserting when local entries change subsequently i.e.
// invoked from TabRestoreServiceChanged().
TabRestoreService* service =
TabRestoreServiceFactory::GetForProfile(browser_->profile());
if (!service || service->entries().size() == 0) {
// This is to show a disabled restore tab entry with the accelerator to
// teach users about this command.
InsertItemWithStringIdAt(++last_local_model_index_,
kDisabledRecentlyClosedHeaderCommandId,
IDS_RECENTLY_CLOSED);
} else {
InsertItemWithStringIdAt(++last_local_model_index_,
kRecentlyClosedHeaderCommandId,
IDS_RECENTLY_CLOSED);
ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance();
SetIcon(last_local_model_index_,
rb.GetNativeImageNamed(IDR_RECENTLY_CLOSED_WINDOW));
int added_count = 0;
TabRestoreService::Entries entries = service->entries();
for (TabRestoreService::Entries::const_iterator it = entries.begin();
it != entries.end() && added_count < kMaxLocalEntries; ++it) {
TabRestoreService::Entry* entry = *it;
if (entry->type == TabRestoreService::TAB) {
TabRestoreService::Tab* tab =
static_cast<TabRestoreService::Tab*>(entry);
const sessions::SerializedNavigationEntry& current_navigation =
tab->navigations.at(tab->current_navigation_index);
BuildLocalTabItem(
entry->id,
current_navigation.title(),
current_navigation.virtual_url(),
++last_local_model_index_);
} else {
DCHECK_EQ(entry->type, TabRestoreService::WINDOW);
BuildLocalWindowItem(
entry->id,
static_cast<TabRestoreService::Window*>(entry)->tabs.size(),
++last_local_model_index_);
}
++added_count;
}
}
DCHECK_GE(last_local_model_index_, 0);
}
void RecentTabsSubMenuModel::BuildTabsFromOtherDevices() {
// All other devices' items (device headers or tabs) use AddItem*() to append
// a menu item, because they are always only built once (i.e. invoked from
// Constructor()) and don't change after that.
sync_driver::OpenTabsUIDelegate* open_tabs = GetOpenTabsUIDelegate();
std::vector<const sync_driver::SyncedSession*> sessions;
if (!open_tabs || !open_tabs->GetAllForeignSessions(&sessions)) {
AddSeparator(ui::NORMAL_SEPARATOR);
AddItemWithStringId(IDC_RECENT_TABS_NO_DEVICE_TABS,
IDS_RECENT_TABS_NO_DEVICE_TABS);
return;
}
// Sort sessions from most recent to least recent.
std::sort(sessions.begin(), sessions.end(), SortSessionsByRecency);
const size_t kMaxSessionsToShow = 3;
size_t num_sessions_added = 0;
for (size_t i = 0;
i < sessions.size() && num_sessions_added < kMaxSessionsToShow; ++i) {
const sync_driver::SyncedSession* session = sessions[i];
const std::string& session_tag = session->session_tag;
// Collect tabs from all windows of the session, ordered by recency.
std::vector<const sessions::SessionTab*> tabs_in_session;
if (!open_tabs->GetForeignSessionTabs(session_tag, &tabs_in_session) ||
tabs_in_session.empty())
continue;
// Add the header for the device session.
DCHECK(!session->session_name.empty());
AddSeparator(ui::NORMAL_SEPARATOR);
int command_id = kMinDeviceNameCommandId + i;
DCHECK_LE(command_id, kMaxDeviceNameCommandId);
AddItem(command_id, base::UTF8ToUTF16(session->session_name));
AddDeviceFavicon(GetItemCount() - 1, session->device_type);
// Build tab menu items from sorted session tabs.
const size_t kMaxTabsPerSessionToShow = 4;
for (size_t k = 0;
k < std::min(tabs_in_session.size(), kMaxTabsPerSessionToShow);
++k) {
BuildOtherDevicesTabItem(session_tag, *tabs_in_session[k]);
} // for all tabs in one session
++num_sessions_added;
} // for all sessions
// We are not supposed to get here unless at least some items were added.
DCHECK_GT(GetItemCount(), 0);
}
void RecentTabsSubMenuModel::BuildLocalTabItem(int session_id,
const base::string16& title,
const GURL& url,
int curr_model_index) {
TabNavigationItem item(std::string(), session_id, title, url);
int command_id = TabVectorIndexToCommandId(
local_tab_navigation_items_.size(), kFirstLocalTabCommandId);
// See comments in BuildLocalEntries() about usage of InsertItem*At().
// There may be no tab title, in which case, use the url as tab title.
InsertItemAt(curr_model_index, command_id,
title.empty() ? base::UTF8ToUTF16(item.url.spec()) : title);
AddTabFavicon(command_id, item.url);
local_tab_navigation_items_.push_back(item);
}
void RecentTabsSubMenuModel::BuildLocalWindowItem(
const SessionID::id_type& window_id,
int num_tabs,
int curr_model_index) {
int command_id = WindowVectorIndexToCommandId(local_window_items_.size());
// See comments in BuildLocalEntries() about usage of InsertItem*At().
InsertItemAt(curr_model_index, command_id, l10n_util::GetPluralStringFUTF16(
IDS_RECENTLY_CLOSED_WINDOW, num_tabs));
ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance();
SetIcon(curr_model_index, rb.GetNativeImageNamed(IDR_RECENTLY_CLOSED_WINDOW));
local_window_items_.push_back(window_id);
}
void RecentTabsSubMenuModel::BuildOtherDevicesTabItem(
const std::string& session_tag,
const sessions::SessionTab& tab) {
const sessions::SerializedNavigationEntry& current_navigation =
tab.navigations.at(tab.normalized_navigation_index());
TabNavigationItem item(session_tag, tab.tab_id.id(),
current_navigation.title(),
current_navigation.virtual_url());
int command_id = TabVectorIndexToCommandId(
other_devices_tab_navigation_items_.size(),
kFirstOtherDevicesTabCommandId);
// See comments in BuildTabsFromOtherDevices() about usage of AddItem*().
// There may be no tab title, in which case, use the url as tab title.
AddItem(command_id,
current_navigation.title().empty() ?
base::UTF8ToUTF16(item.url.spec()) : current_navigation.title());
AddTabFavicon(command_id, item.url);
other_devices_tab_navigation_items_.push_back(item);
}
void RecentTabsSubMenuModel::AddDeviceFavicon(
int index_in_menu,
sync_driver::SyncedSession::DeviceType device_type) {
int favicon_id = -1;
switch (device_type) {
case sync_driver::SyncedSession::TYPE_PHONE:
favicon_id = IDR_PHONE_FAVICON;
break;
case sync_driver::SyncedSession::TYPE_TABLET:
favicon_id = IDR_TABLET_FAVICON;
break;
case sync_driver::SyncedSession::TYPE_CHROMEOS:
case sync_driver::SyncedSession::TYPE_WIN:
case sync_driver::SyncedSession::TYPE_MACOSX:
case sync_driver::SyncedSession::TYPE_LINUX:
case sync_driver::SyncedSession::TYPE_OTHER:
case sync_driver::SyncedSession::TYPE_UNSET:
favicon_id = IDR_LAPTOP_FAVICON;
break;
}
ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance();
SetIcon(index_in_menu, rb.GetNativeImageNamed(favicon_id));
}
void RecentTabsSubMenuModel::AddTabFavicon(int command_id, const GURL& url) {
bool is_local_tab = command_id < kFirstOtherDevicesTabCommandId;
int index_in_menu = GetIndexOfCommandId(command_id);
if (!is_local_tab) {
// If tab has synced favicon, use it.
// Note that currently, other devices' tabs only have favicons if
// --sync-tab-favicons switch is on; according to zea@, this flag is now
// automatically enabled for iOS and android, and they're looking into
// enabling it for other platforms.
sync_driver::OpenTabsUIDelegate* open_tabs = GetOpenTabsUIDelegate();
scoped_refptr<base::RefCountedMemory> favicon_png;
if (open_tabs &&
open_tabs->GetSyncedFaviconForPageURL(url.spec(), &favicon_png)) {
gfx::Image image = gfx::Image::CreateFrom1xPNGBytes(favicon_png);
SetIcon(index_in_menu, image);
return;
}
}
// Otherwise, start to fetch the favicon from local history asynchronously.
// Set default icon first.
SetIcon(index_in_menu, default_favicon_);
// Start request to fetch actual icon if possible.
favicon::FaviconService* favicon_service =
FaviconServiceFactory::GetForProfile(browser_->profile(),
ServiceAccessType::EXPLICIT_ACCESS);
if (!favicon_service)
return;
favicon_service->GetFaviconImageForPageURL(
url,
base::Bind(&RecentTabsSubMenuModel::OnFaviconDataAvailable,
weak_ptr_factory_.GetWeakPtr(),
command_id),
is_local_tab ? &local_tab_cancelable_task_tracker_
: &other_devices_tab_cancelable_task_tracker_);
}
void RecentTabsSubMenuModel::OnFaviconDataAvailable(
int command_id,
const favicon_base::FaviconImageResult& image_result) {
if (image_result.image.IsEmpty())
return;
int index_in_menu = GetIndexOfCommandId(command_id);
DCHECK_GT(index_in_menu, -1);
SetIcon(index_in_menu, image_result.image);
ui::MenuModelDelegate* menu_model_delegate = GetMenuModelDelegate();
if (menu_model_delegate)
menu_model_delegate->OnIconChanged(index_in_menu);
}
int RecentTabsSubMenuModel::CommandIdToTabVectorIndex(
int command_id,
TabNavigationItems** tab_items) {
DCHECK(IsTabModelCommandId(command_id));
if (command_id >= kFirstOtherDevicesTabCommandId) {
*tab_items = &other_devices_tab_navigation_items_;
return command_id - kFirstOtherDevicesTabCommandId;
}
*tab_items = &local_tab_navigation_items_;
return command_id - kFirstLocalTabCommandId;
}
void RecentTabsSubMenuModel::ClearLocalEntries() {
// Remove local items (recently closed tabs and windows) from menumodel.
while (last_local_model_index_ > kHistorySeparatorIndex)
RemoveItemAt(last_local_model_index_--);
// Cancel asynchronous FaviconService::GetFaviconImageForPageURL() tasks of
// all local tabs.
local_tab_cancelable_task_tracker_.TryCancelAll();
// Remove all local tab navigation items.
local_tab_navigation_items_.clear();
// Remove all local window items.
local_window_items_.clear();
}
sync_driver::OpenTabsUIDelegate*
RecentTabsSubMenuModel::GetOpenTabsUIDelegate() {
if (!open_tabs_delegate_) {
ProfileSyncService* service = ProfileSyncServiceFactory::GetInstance()->
GetForProfile(browser_->profile());
// Only return the delegate if it exists and it is done syncing sessions.
if (service && service->IsSyncActive())
open_tabs_delegate_ = service->GetOpenTabsUIDelegate();
}
return open_tabs_delegate_;
}
void RecentTabsSubMenuModel::TabRestoreServiceChanged(
TabRestoreService* service) {
ClearLocalEntries();
BuildLocalEntries();
ui::MenuModelDelegate* menu_model_delegate = GetMenuModelDelegate();
if (menu_model_delegate)
menu_model_delegate->OnMenuStructureChanged();
}
void RecentTabsSubMenuModel::TabRestoreServiceDestroyed(
TabRestoreService* service) {
TabRestoreServiceChanged(service);
}
|