Fix building on Windows

This commit is contained in:
Cheng Zhao 2015-03-18 12:55:02 +08:00
parent 21ee1f257f
commit 4e14c8634b
3 changed files with 6 additions and 1 deletions

View file

@ -54,6 +54,10 @@ HICON ViewsDelegate::GetDefaultWindowIcon() const {
return LoadIcon(GetModuleHandle(NULL), MAKEINTRESOURCE(1 /* IDR_MAINFRAME */));
}
HICON ViewsDelegate::GetSmallWindowIcon() const {
return GetDefaultWindowIcon();
}
bool ViewsDelegate::IsWindowInMetro(gfx::NativeWindow window) const {
return false;
}