Home | History | Annotate | Download | only in app_window

Lines Matching refs:create_params

134   ShellWindow::CreateParams create_params;
150 create_params.window_key = *options->id;
155 create_params.window_key);
181 create_params.bounds.set_width(*options->default_width.get());
183 create_params.bounds.set_height(*options->default_height.get());
185 create_params.bounds.set_x(*options->default_left.get());
187 create_params.bounds.set_y(*options->default_top.get());
190 create_params.bounds.set_width(*options->width.get());
192 create_params.bounds.set_height(*options->height.get());
194 create_params.bounds.set_x(*options->left.get());
196 create_params.bounds.set_y(*options->top.get());
201 create_params.bounds.set_width(*bounds->width.get());
203 create_params.bounds.set_height(*bounds->height.get());
205 create_params.bounds.set_x(*bounds->left.get());
207 create_params.bounds.set_y(*bounds->top.get());
213 create_params.window_type = ShellWindow::WINDOW_TYPE_PANEL;
221 create_params.frame = ShellWindow::FRAME_NONE;
224 create_params.frame = ShellWindow::FRAME_NONE;
226 create_params.frame = ShellWindow::FRAME_CHROME;
233 create_params.transparent_background = *options->transparent_background;
236 gfx::Size& minimum_size = create_params.minimum_size;
241 gfx::Size& maximum_size = create_params.maximum_size;
248 create_params.hidden = *options->hidden.get();
251 create_params.resizable = *options->resizable.get();
259 create_params.state = ui::SHOW_STATE_FULLSCREEN;
262 create_params.state = ui::SHOW_STATE_MAXIMIZED;
265 create_params.state = ui::SHOW_STATE_MINIMIZED;
273 create_params.creator_process_id =
281 if (force_maximize && !create_params.maximum_size.IsEmpty()) {
288 if (size.width() > create_params.maximum_size.width() ||
289 size.height() > create_params.maximum_size.height())
295 create_params.state = ui::SHOW_STATE_MAXIMIZED;
302 create_params);
310 if (create_params.creator_process_id == created_view->GetProcess()->GetID())