Come correct with line length and constness

This commit is contained in:
Paul Betts 2015-02-06 16:31:41 -08:00
parent 0afac1e05a
commit fa6d499a4e
4 changed files with 14 additions and 5 deletions

View file

@ -613,7 +613,9 @@ void NativeWindowViews::SetProgressBar(double progress) {
#endif
}
void NativeWindowViews::SetOverlayIcon(gfx::ImageSkia& overlay, const std::string& description) {
void NativeWindowViews::SetOverlayIcon(
const gfx::ImageSkia& overlay,
const std::string& description) {
#if defined(OS_WIN)
if (base::win::GetVersion() < base::win::VERSION_WIN7)
return;
@ -624,8 +626,12 @@ void NativeWindowViews::SetOverlayIcon(gfx::ImageSkia& overlay, const std::strin
FAILED(taskbar->HrInit()))) {
return;
}
HWND frame = views::HWNDForNativeWindow(GetNativeWindow());
taskbar->SetOverlayIcon(frame, IconUtil::CreateHICONFromSkiaBitmap(overlay.AsBitmap()), description);
taskbar->SetOverlayIcon(frame,
IconUtil::CreateHICONFromSkiaBitmap(overlay.AsBitmap()),
description);
#endif
}