views: Fix compilation error.
This commit is contained in:
parent
2a9f5a5fb8
commit
cbd6541e9a
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue