HomeSort by relevance Sort by last modified time
    Searched refs:create_params (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/app_window/
app_window_api.cc 134 ShellWindow::CreateParams create_params; local
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())
    [all...]
  /external/chromium_org/sandbox/win/src/
named_pipe_dispatcher.cc 24 static const IPCCall create_params = { local
30 ipc_calls_.push_back(create_params);
sync_dispatcher.cc 21 static const IPCCall create_params = { local
31 ipc_calls_.push_back(create_params);
registry_dispatcher.cc 44 static const IPCCall create_params = { local
55 ipc_calls_.push_back(create_params);
process_thread_dispatcher.cc 123 static const IPCCall create_params = { local
133 ipc_calls_.push_back(create_params);
filesystem_dispatcher.cc 22 static const IPCCall create_params = { local
53 ipc_calls_.push_back(create_params);
  /external/chromium_org/chrome/browser/ui/views/apps/
native_app_window_views.cc 122 const ShellWindow::CreateParams& create_params)
127 frameless_(create_params.frame == ShellWindow::FRAME_NONE),
128 transparent_background_(create_params.transparent_background),
129 minimum_size_(create_params.minimum_size),
130 maximum_size_(create_params.maximum_size),
131 resizable_(create_params.resizable),
136 if (create_params.window_type == ShellWindow::WINDOW_TYPE_PANEL ||
137 create_params.window_type == ShellWindow::WINDOW_TYPE_V1_PANEL) {
138 InitializePanelWindow(create_params);
140 InitializeDefaultWindow(create_params);
    [all...]
native_app_window_views.h 53 const apps::ShellWindow::CreateParams& create_params);
55 const apps::ShellWindow::CreateParams& create_params);
  /external/chromium_org/chrome/browser/tab_contents/
background_contents.cc 32 WebContents::CreateParams create_params(profile_, site_instance);
33 create_params.routing_id = routing_id;
34 web_contents_.reset(WebContents::Create(create_params));
  /external/chromium_org/ash/shell/
shell_delegate_impl.cc 101 ash::shell::ToplevelWindow::CreateParams create_params; local
102 create_params.can_resize = true;
103 create_params.can_maximize = true;
104 ash::shell::ToplevelWindow::CreateToplevelWindow(create_params);
  /external/chromium_org/chrome/browser/ui/
browser_tabrestore.cc 55 WebContents::CreateParams create_params(
61 create_params.initial_size =
65 create_params,
browser_navigator.cc 326 WebContents::CreateParams create_params(
330 create_params.initial_size =
333 create_params.opener = params.source_contents;
338 create_params.context =
343 WebContents* target_contents = WebContents::Create(create_params);
browser_navigator_browsertest.cc 130 content::WebContents::CreateParams create_params(browser()->profile());
134 create_params.initial_size =
137 return WebContents::Create(create_params);
    [all...]
  /external/chromium_org/chrome/browser/ui/search/
instant_loader.cc 48 content::WebContents::CreateParams create_params(profile);
49 create_params.site_instance = content::SiteInstance::CreateForURL(
52 content::WebContents::Create(create_params)));
  /external/chromium_org/content/shell/
shell.cc 156 WebContents::CreateParams create_params(browser_context, site_instance);
157 create_params.routing_id = routing_id;
159 create_params.initial_size = initial_size;
161 create_params.initial_size =
163 WebContents* web_contents = WebContents::Create(create_params);
164 Shell* shell = CreateShell(web_contents, create_params.initial_size);
  /external/chromium_org/chrome/browser/profiles/
avatar_menu_model.cc 350 content::WebContents::CreateParams create_params(current_profile);
351 create_params.site_instance =
353 content::WebContents* contents = content::WebContents::Create(create_params);
  /external/chromium_org/chrome/browser/ui/panels/
panel_host.cc 51 content::WebContents::CreateParams create_params(
53 web_contents_.reset(content::WebContents::Create(create_params));
  /external/chromium_org/ui/views/controls/webview/
webview.cc 288 content::WebContents::CreateParams create_params(
290 return content::WebContents::Create(create_params);
  /external/chromium_org/chrome/browser/extensions/api/tabs/
tabs_api.cc 586 ShellWindow::CreateParams create_params; local
587 create_params.window_type = ShellWindow::WINDOW_TYPE_V1_PANEL;
588 create_params.bounds = window_bounds;
589 create_params.focused = saw_focus_key && focused;
594 shell_window->Init(urls[0], ash_panel_contents, create_params);
623 Browser::CreateParams create_params(window_type, window_profile,
626 create_params.initial_bounds = window_bounds;
628 create_params = Browser::CreateParams::CreateForApp(
635 create_params.initial_show_state = ui::SHOW_STATE_NORMAL;
636 create_params.host_desktop_type = chrome::GetActiveDesktop()
    [all...]
  /external/chromium_org/content/browser/web_contents/
web_contents_impl.cc 439 WebContents::CreateParams create_params(browser_context, site_instance);
440 new_contents->Init(create_params);
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_drag_controller.cc     [all...]
  /external/chromium_org/chrome/browser/ui/tabs/
tab_strip_model_unittest.cc 123 WebContents::CreateParams create_params(
125 WebContents* retval = WebContents::Create(create_params);
    [all...]

Completed in 521 milliseconds