views: Fix compilation error.

This commit is contained in:
Cheng Zhao 2014-08-17 12:57:22 +08:00
parent 2a9f5a5fb8
commit cbd6541e9a

View file

@ -124,7 +124,7 @@ NativeWindowViews::NativeWindowViews(content::WebContents* web_contents,
// will not allow us to resize the window larger than scree. // will not allow us to resize the window larger than scree.
// Setting directly to INT_MAX somehow doesn't work, so we just devide // Setting directly to INT_MAX somehow doesn't work, so we just devide
// by 10, which should still be large enough. // by 10, which should still be large enough.
maximum_size_.set(INT_MAX / 10, INT_MAX / 10); maximum_size_.SetSize(INT_MAX / 10, INT_MAX / 10);
int width = 800, height = 600; int width = 800, height = 600;
options.Get(switches::kWidth, &width); options.Get(switches::kWidth, &width);