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

Unified Diff: chrome/browser/ui/views/frame/taskbar_decorator_win.cc

Issue 1336823003: Move chrome::HostDesktopType to ui::HostDesktopType (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@base_session_service_delegate_impl
Patch Set: Fix build on Mac and CrOS Created 5 years, 3 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/frame/taskbar_decorator_win.cc
diff --git a/chrome/browser/ui/views/frame/taskbar_decorator_win.cc b/chrome/browser/ui/views/frame/taskbar_decorator_win.cc
index 8772dce1f62d7c5f483db74da348841290021ff4..3facf4e950f0bee8cc4f6a08d5828e41e6b520c0 100644
--- a/chrome/browser/ui/views/frame/taskbar_decorator_win.cc
+++ b/chrome/browser/ui/views/frame/taskbar_decorator_win.cc
@@ -69,10 +69,10 @@ void SetOverlayIcon(HWND hwnd, scoped_ptr<SkBitmap> bitmap) {
} // namespace
void DrawTaskbarDecoration(gfx::NativeWindow window, const gfx::Image* image) {
- // HOST_DESKTOP_TYPE_ASH doesn't use the taskbar.
+ // ui::HOST_DESKTOP_TYPE_ASH doesn't use the taskbar.
if (base::win::GetVersion() < base::win::VERSION_WIN7 ||
chrome::GetHostDesktopTypeForNativeWindow(window) !=
- chrome::HOST_DESKTOP_TYPE_NATIVE)
+ ui::HOST_DESKTOP_TYPE_NATIVE)
return;
HWND hwnd = views::HWNDForNativeWindow(window);

Powered by Google App Engine
This is Rietveld 408576698