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

Side by Side Diff: chrome/browser/ui/views/chrome_views_delegate.cc

Issue 780913002: Revert of Fix icon on Windows XP taskbar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 unified diff | Download patch
« no previous file with comments | « chrome/browser/ui/views/chrome_views_delegate.h ('k') | ui/gfx/win/window_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/views/chrome_views_delegate.h" 5 #include "chrome/browser/ui/views/chrome_views_delegate.h"
6 6
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "base/prefs/pref_service.h" 8 #include "base/prefs/pref_service.h"
9 #include "base/prefs/scoped_user_pref_update.h" 9 #include "base/prefs/scoped_user_pref_update.h"
10 #include "base/strings/string_util.h" 10 #include "base/strings/string_util.h"
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 bool has_submenu) { 223 bool has_submenu) {
224 AccessibilityEventRouterViews::GetInstance()->HandleMenuItemFocused( 224 AccessibilityEventRouterViews::GetInstance()->HandleMenuItemFocused(
225 menu_name, menu_item_name, item_index, item_count, has_submenu); 225 menu_name, menu_item_name, item_index, item_count, has_submenu);
226 } 226 }
227 227
228 #if defined(OS_WIN) 228 #if defined(OS_WIN)
229 HICON ChromeViewsDelegate::GetDefaultWindowIcon() const { 229 HICON ChromeViewsDelegate::GetDefaultWindowIcon() const {
230 return GetAppIcon(); 230 return GetAppIcon();
231 } 231 }
232 232
233 HICON ChromeViewsDelegate::GetSmallWindowIcon() const {
234 return GetSmallAppIcon();
235 }
236
237 bool ChromeViewsDelegate::IsWindowInMetro(gfx::NativeWindow window) const { 233 bool ChromeViewsDelegate::IsWindowInMetro(gfx::NativeWindow window) const {
238 return chrome::IsNativeViewInAsh(window); 234 return chrome::IsNativeViewInAsh(window);
239 } 235 }
240 236
241 #elif defined(OS_LINUX) && !defined(OS_CHROMEOS) 237 #elif defined(OS_LINUX) && !defined(OS_CHROMEOS)
242 gfx::ImageSkia* ChromeViewsDelegate::GetDefaultWindowIcon() const { 238 gfx::ImageSkia* ChromeViewsDelegate::GetDefaultWindowIcon() const {
243 ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance(); 239 ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance();
244 return rb.GetImageSkiaNamed(IDR_PRODUCT_LOGO_64); 240 return rb.GetImageSkiaNamed(IDR_PRODUCT_LOGO_64);
245 } 241 }
246 #endif 242 #endif
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 } 426 }
431 #endif 427 #endif
432 428
433 #if !defined(USE_AURA) && !defined(USE_CHROMEOS) 429 #if !defined(USE_AURA) && !defined(USE_CHROMEOS)
434 views::Widget::InitParams::WindowOpacity 430 views::Widget::InitParams::WindowOpacity
435 ChromeViewsDelegate::GetOpacityForInitParams( 431 ChromeViewsDelegate::GetOpacityForInitParams(
436 const views::Widget::InitParams& params) { 432 const views::Widget::InitParams& params) {
437 return views::Widget::InitParams::OPAQUE_WINDOW; 433 return views::Widget::InitParams::OPAQUE_WINDOW;
438 } 434 }
439 #endif 435 #endif
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/chrome_views_delegate.h ('k') | ui/gfx/win/window_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698