OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/ash/launcher/browser_shortcut_launcher_item_controll
er.h" | 5 #include "chrome/browser/ui/ash/launcher/browser_shortcut_launcher_item_controll
er.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "ash/shelf/shelf.h" | 9 #include "ash/shelf/shelf.h" |
10 #include "ash/shelf/shelf_model.h" | 10 #include "ash/shelf/shelf_model.h" |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 BrowserShortcutLauncherItemController::GetApplicationList(int event_flags) { | 187 BrowserShortcutLauncherItemController::GetApplicationList(int event_flags) { |
188 ChromeLauncherAppMenuItems items; | 188 ChromeLauncherAppMenuItems items; |
189 bool found_tabbed_browser = false; | 189 bool found_tabbed_browser = false; |
190 // Add the application name to the menu. | 190 // Add the application name to the menu. |
191 items.push_back(new ChromeLauncherAppMenuItem(GetTitle(), NULL, false)); | 191 items.push_back(new ChromeLauncherAppMenuItem(GetTitle(), NULL, false)); |
192 const BrowserList* ash_browser_list = | 192 const BrowserList* ash_browser_list = |
193 BrowserList::GetInstance(chrome::HOST_DESKTOP_TYPE_ASH); | 193 BrowserList::GetInstance(chrome::HOST_DESKTOP_TYPE_ASH); |
194 for (BrowserList::const_iterator it = ash_browser_list->begin(); | 194 for (BrowserList::const_iterator it = ash_browser_list->begin(); |
195 it != ash_browser_list->end(); ++it) { | 195 it != ash_browser_list->end(); ++it) { |
196 Browser* browser = *it; | 196 Browser* browser = *it; |
197 // Make sure that the browser was already shown, is from the current user | 197 // Make sure that the browser is from the current user and has a proper |
198 // and has a proper window. | 198 // window. |
199 if (!launcher_controller()->IsBrowserFromActiveUser(browser) || | 199 if (!launcher_controller()->IsBrowserFromActiveUser(browser) || |
200 std::find(ash_browser_list->begin_last_active(), | |
201 ash_browser_list->end_last_active(), | |
202 browser) == ash_browser_list->end_last_active() || | |
203 !browser->window()) | 200 !browser->window()) |
204 continue; | 201 continue; |
205 if (browser->is_type_tabbed()) | 202 if (browser->is_type_tabbed()) |
206 found_tabbed_browser = true; | 203 found_tabbed_browser = true; |
207 else if (!IsBrowserRepresentedInBrowserList(browser)) | 204 else if (!IsBrowserRepresentedInBrowserList(browser)) |
208 continue; | 205 continue; |
209 TabStripModel* tab_strip = browser->tab_strip_model(); | 206 TabStripModel* tab_strip = browser->tab_strip_model(); |
210 if (tab_strip->active_index() == -1) | 207 if (tab_strip->active_index() == -1) |
211 continue; | 208 continue; |
212 if (!(event_flags & ui::EF_SHIFT_DOWN)) { | 209 if (!(event_flags & ui::EF_SHIFT_DOWN)) { |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 web_app::GetExtensionIdFromApplicationName(browser->app_name())) > 0) | 365 web_app::GetExtensionIdFromApplicationName(browser->app_name())) > 0) |
369 return false; | 366 return false; |
370 | 367 |
371 // Settings browsers have their own icon. | 368 // Settings browsers have their own icon. |
372 if (IsSettingsBrowser(browser)) | 369 if (IsSettingsBrowser(browser)) |
373 return false; | 370 return false; |
374 | 371 |
375 // Tabbed browser and other popup windows are all represented. | 372 // Tabbed browser and other popup windows are all represented. |
376 return true; | 373 return true; |
377 } | 374 } |
OLD | NEW |