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

Unified Diff: ui/views/widget/widget.cc

Issue 122353003: On Linux, the App Launcher is now shown in the taskbar. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added TODO to respect this flag in Windows. Created 6 years, 11 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 | « ui/views/widget/widget.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/widget/widget.cc
diff --git a/ui/views/widget/widget.cc b/ui/views/widget/widget.cc
index 179ccc656c976d34dd0ef54154596c2007dcdf74..c2509610f25838aadbb0c958d0cf2d352de66e98 100644
--- a/ui/views/widget/widget.cc
+++ b/ui/views/widget/widget.cc
@@ -128,7 +128,8 @@ Widget::InitParams::InitParams()
desktop_root_window_host(NULL),
top_level(false),
layer_type(ui::LAYER_TEXTURED),
- context(NULL) {
+ context(NULL),
+ force_show_in_taskbar(false) {
}
Widget::InitParams::InitParams(Type type)
@@ -152,7 +153,8 @@ Widget::InitParams::InitParams(Type type)
desktop_root_window_host(NULL),
top_level(false),
layer_type(ui::LAYER_TEXTURED),
- context(NULL) {
+ context(NULL),
+ force_show_in_taskbar(false) {
}
Widget::InitParams::~InitParams() {
« no previous file with comments | « ui/views/widget/widget.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698