Index: ash/launcher/launcher_model.cc |
diff --git a/ash/launcher/launcher_model.cc b/ash/launcher/launcher_model.cc |
index 33aa5bb30f3d3d36ca06328031caf05db656af70..34de1d28fa30e6aad89aff7a23c2c115259994de 100644 |
--- a/ash/launcher/launcher_model.cc |
+++ b/ash/launcher/launcher_model.cc |
@@ -10,8 +10,16 @@ |
namespace ash { |
LauncherModel::LauncherModel() : next_id_(1) { |
- Add(0, LauncherItem(TYPE_APP_LIST)); |
- Add(1, LauncherItem(TYPE_BROWSER_SHORTCUT)); |
+ LauncherItem app_list; |
+ app_list.type = TYPE_APP_LIST; |
+ app_list.is_incognito = false; |
+ |
+ LauncherItem browser_shortcut; |
+ browser_shortcut.type = TYPE_BROWSER_SHORTCUT; |
+ browser_shortcut.is_incognito = false; |
+ |
+ Add(0, app_list); |
+ Add(1, browser_shortcut); |
} |
LauncherModel::~LauncherModel() { |