Add BrowserWindow::setContentSize.

This commit is contained in:
Cheng Zhao 2014-05-15 16:05:35 +08:00
parent 511a49f6fb
commit 5150fd6946
9 changed files with 33 additions and 1 deletions

View file

@ -295,6 +295,10 @@ gfx::Size NativeWindowWin::GetSize() {
return window_->GetWindowBoundsInScreen().size();
}
void NativeWindowWin::SetContentSize(const gfx::Size& size) {
// FIXME
}
gfx::Size NativeWindowWin::GetContentSize() {
return window_->GetClientAreaBoundsInScreen().size();
}