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

Unified Diff: ash/launcher/launcher_types.cc

Issue 9692021: Revert 126256 - Show a different icon in the launcher for incognito windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/launcher/launcher_types.h ('k') | ash/launcher/launcher_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {
}
« no previous file with comments | « ash/launcher/launcher_types.h ('k') | ash/launcher/launcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698