Index: ash/launcher/launcher_types.cc |
=================================================================== |
--- ash/launcher/launcher_types.cc (revision 126259) |
+++ ash/launcher/launcher_types.cc (working copy) |
@@ -9,11 +9,17 @@ |
LauncherItem::LauncherItem() |
: type(TYPE_TABBED), |
num_tabs(1), |
- is_incognito(false), |
id(0), |
status(STATUS_CLOSED) { |
} |
+LauncherItem::LauncherItem(LauncherItemType type) |
+ : type(type), |
+ num_tabs(0), |
+ id(0), |
+ status(STATUS_CLOSED) { |
+} |
+ |
LauncherItem::~LauncherItem() { |
} |