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

Unified Diff: chrome/browser/ui/views/app_list/win/app_list_service_win.cc

Issue 127133003: Windows: Top-level bubbles no longer appear on taskbar by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: chrome/browser/ui/views/app_list/win/app_list_service_win.cc
diff --git a/chrome/browser/ui/views/app_list/win/app_list_service_win.cc b/chrome/browser/ui/views/app_list/win/app_list_service_win.cc
index 0d583eb67034a57f959a95f3feb00c66cae32d84..b171f66d193f0adb114f04b69fb017f774d5e0b6 100644
--- a/chrome/browser/ui/views/app_list/win/app_list_service_win.cc
+++ b/chrome/browser/ui/views/app_list/win/app_list_service_win.cc
@@ -263,15 +263,6 @@ void CreateAppListShortcuts(
// Customizes the app list |hwnd| for Windows (eg: disable aero peek, set up
// restart params).
void SetWindowAttributes(HWND hwnd) {
- // Vista and lower do not offer pinning to the taskbar, which makes any
- // presence on the taskbar useless. So, hide the window on the taskbar
- // for these versions of Windows.
- if (base::win::GetVersion() <= base::win::VERSION_VISTA) {
- LONG_PTR ex_styles = GetWindowLongPtr(hwnd, GWL_EXSTYLE);
- ex_styles |= WS_EX_TOOLWINDOW;
- SetWindowLongPtr(hwnd, GWL_EXSTYLE, ex_styles);
- }
-
if (base::win::GetVersion() > base::win::VERSION_VISTA) {
// Disable aero peek. Without this, hovering over the taskbar popup puts
// Windows into a mode for switching between windows in the same
« no previous file with comments | « no previous file | chrome/browser/ui/views/message_center/message_center_widget_delegate.cc » ('j') | ui/views/widget/widget.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698