Home
last modified time | relevance | path

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

/external/chromium/chrome/browser/resources/touch_ntp/standalone/
Dstandalone_hack.js55 launch_type: 1, property
67 launch_type: 1, property
79 launch_type: 1, property
92 launch_type: 1, property
104 launch_type: 1, property
116 launch_type: 1, property
127 launch_type: 1, property
240 switch (parseInt(app.launch_type, 10)) {
258 alert('Unexpected launch type: ' + app.launch_type);
/external/chromium/chrome/browser/ui/
Dbrowser_init_browsertest.cc38 ExtensionPrefs::LaunchType launch_type) { in SetAppLaunchPref() argument
40 service->extension_prefs()->SetLaunchType(app_id, launch_type); in SetAppLaunchPref()
Dbrowser.cc637 ExtensionPrefs::LaunchType launch_type = in OpenApplicationTab() local
640 UMA_HISTOGRAM_ENUMERATION("Extensions.AppTabLaunchType", launch_type, 100); in OpenApplicationTab()
642 if (launch_type == ExtensionPrefs::LAUNCH_PINNED) in OpenApplicationTab()
684 if (launch_type == ExtensionPrefs::LAUNCH_FULLSCREEN && in OpenApplicationTab()
/external/chromium/chrome/browser/ui/webui/
Dapp_launcher_handler.cc406 double launch_type; in HandleSetLaunchType() local
408 CHECK(args->GetDouble(1, &launch_type)); in HandleSetLaunchType()
417 static_cast<int>(launch_type))); in HandleSetLaunchType()
/external/chromium/chrome/browser/automation/
Dautomation_provider_observers.cc1860 int launch_type; in GetAppInfoFromExtensions() local
1861 app_info->GetInteger("launch_type", &launch_type); in GetAppInfoFromExtensions()
1862 if (launch_type == ExtensionPrefs::LAUNCH_PINNED) { in GetAppInfoFromExtensions()
1864 } else if (launch_type == ExtensionPrefs::LAUNCH_REGULAR) { in GetAppInfoFromExtensions()
1866 } else if (launch_type == ExtensionPrefs::LAUNCH_FULLSCREEN) { in GetAppInfoFromExtensions()
1868 } else if (launch_type == ExtensionPrefs::LAUNCH_WINDOW) { in GetAppInfoFromExtensions()
Dtesting_automation_provider.cc5000 ExtensionPrefs::LaunchType launch_type; in SetAppLaunchType() local
5002 launch_type = ExtensionPrefs::LAUNCH_PINNED; in SetAppLaunchType()
5004 launch_type = ExtensionPrefs::LAUNCH_REGULAR; in SetAppLaunchType()
5006 launch_type = ExtensionPrefs::LAUNCH_FULLSCREEN; in SetAppLaunchType()
5008 launch_type = ExtensionPrefs::LAUNCH_WINDOW; in SetAppLaunchType()
5015 service->extension_prefs()->SetLaunchType(extension->id(), launch_type); in SetAppLaunchType()
/external/chromium/chrome/browser/extensions/
Dextension_prefs.h211 void SetLaunchType(const std::string& extension_id, LaunchType launch_type);
Dextension_prefs.cc819 LaunchType launch_type) { in SetLaunchType() argument
821 Value::CreateIntegerValue(static_cast<int>(launch_type))); in SetLaunchType()