Implement BrowserWindow::ShowInactive

This commit is contained in:
Cheng Zhao 2014-10-17 22:51:20 +08:00
parent cb9bdbf247
commit 141894aacd
7 changed files with 17 additions and 0 deletions

View file

@ -232,6 +232,10 @@ bool NativeWindowViews::IsFocused() {
}
void NativeWindowViews::Show() {
window_->Show();
}
void NativeWindowViews::ShowInactive() {
window_->ShowInactive();
}