Searched refs:launch_type (Results 1 - 8 of 8) sorted by relevance

/external/chromium/chrome/browser/resources/touch_ntp/standalone/
H A Dstandalone_hack.js55 launch_type: 1,
67 launch_type: 1,
79 launch_type: 1,
92 launch_type: 1,
104 launch_type: 1,
116 launch_type: 1,
127 launch_type: 1,
240 switch (parseInt(app.launch_type, 10)) {
258 alert('Unexpected launch type: ' + app.launch_type);
/external/chromium/chrome/browser/ui/
H A Dbrowser_init_browsertest.cc38 ExtensionPrefs::LaunchType launch_type) {
40 service->extension_prefs()->SetLaunchType(app_id, launch_type);
37 SetAppLaunchPref(const std::string& app_id, ExtensionPrefs::LaunchType launch_type) argument
H A Dbrowser.cc637 ExtensionPrefs::LaunchType launch_type = local
640 UMA_HISTOGRAM_ENUMERATION("Extensions.AppTabLaunchType", launch_type, 100);
642 if (launch_type == ExtensionPrefs::LAUNCH_PINNED)
684 if (launch_type == ExtensionPrefs::LAUNCH_FULLSCREEN &&
/external/chromium/chrome/browser/ui/webui/
H A Dapp_launcher_handler.cc101 value->SetInteger("launch_type",
406 double launch_type; local
408 CHECK(args->GetDouble(1, &launch_type));
417 static_cast<int>(launch_type)));
/external/chromium/chrome/browser/extensions/
H A Dextension_prefs.h211 void SetLaunchType(const std::string& extension_id, LaunchType launch_type);
H A Dextension_prefs.cc819 LaunchType launch_type) {
821 Value::CreateIntegerValue(static_cast<int>(launch_type)));
818 SetLaunchType(const std::string& extension_id, LaunchType launch_type) argument
/external/chromium/chrome/browser/automation/
H A Dautomation_provider_observers.cc1859 // Convert the launch_type integer into a more descriptive string.
1860 int launch_type; local
1861 app_info->GetInteger("launch_type", &launch_type);
1862 if (launch_type == ExtensionPrefs::LAUNCH_PINNED) {
1863 app_info->SetString("launch_type", "pinned");
1864 } else if (launch_type == ExtensionPrefs::LAUNCH_REGULAR) {
1865 app_info->SetString("launch_type", "regular");
1866 } else if (launch_type == ExtensionPrefs::LAUNCH_FULLSCREEN) {
1867 app_info->SetString("launch_type", "fullscree
[all...]
H A Dtesting_automation_provider.cc4966 // "launch_type": "pinned" }
4981 if (!args->GetString("launch_type", &launch_type_str)) {
5000 ExtensionPrefs::LaunchType launch_type; local
5002 launch_type = ExtensionPrefs::LAUNCH_PINNED;
5004 launch_type = ExtensionPrefs::LAUNCH_REGULAR;
5006 launch_type = ExtensionPrefs::LAUNCH_FULLSCREEN;
5008 launch_type = ExtensionPrefs::LAUNCH_WINDOW;
5015 service->extension_prefs()->SetLaunchType(extension->id(), launch_type);

Completed in 151 milliseconds