/external/chromium_org/chrome/common/ |
pepper_permission_util.h | 22 // Checks whether the host of |url| is allowed by |command_line_switch|. 24 // If the value of |command_line_switch| is: 30 const char* command_line_switch);
|
pepper_permission_util.cc | 74 const char* command_line_switch) { 80 command_line.GetSwitchValueASCII(command_line_switch);
|
/external/chromium_org/google_apis/ |
google_api_keys.cc | 196 // |command_line_switch| may be NULL. 199 const char* command_line_switch, 211 if (command_line_switch && command_line->HasSwitch(command_line_switch)) { 212 key_value = command_line->GetSwitchValueASCII(command_line_switch);
|
/external/chromium_org/chrome/installer/util/ |
auto_launch_util.cc | 69 // to auto-launch at computer startup with a given |command_line_switch|. 74 // |command_line_switch| is the switch we are optionally interested in and, if 79 const std::string& command_line_switch) { 99 return command_line_switch.empty() || 100 autolaunch.find(ASCIIToUTF16(command_line_switch)) != string16::npos;
|
/external/chromium/chrome/browser/ |
about_flags.cc | 27 #define SINGLE_VALUE_TYPE_AND_VALUE(command_line_switch, switch_value) \ 28 Experiment::SINGLE_VALUE, command_line_switch, switch_value, NULL, 0 29 #define SINGLE_VALUE_TYPE(command_line_switch) \ 30 SINGLE_VALUE_TYPE_AND_VALUE(command_line_switch, "") 391 DCHECK(e.choices[0].command_line_switch); 392 DCHECK_EQ('\0', e.choices[0].command_line_switch[0]); 580 std::pair<std::string, std::string>(e.command_line_switch, 586 e.choices[j].command_line_switch,
|
about_flags.h | 46 const char* command_line_switch; member in struct:about_flags::Experiment::Choice 73 const char* command_line_switch; member in struct:about_flags::Experiment
|
/external/chromium_org/chrome/app/ |
chrome_exe_main_win.cc | 83 bool IsFastStartSwitch(const std::string& command_line_switch) { 85 if (command_line_switch == kFastStartSwitches[i])
|
/external/chromium_org/chrome/browser/ |
about_flags.h | 58 const char* command_line_switch; member in struct:about_flags::Experiment::Choice 85 const char* command_line_switch; member in struct:about_flags::Experiment
|
about_flags.cc | 61 #define SINGLE_VALUE_TYPE_AND_VALUE(command_line_switch, switch_value) \ 63 command_line_switch, switch_value, NULL, NULL, NULL, 0 64 #define SINGLE_VALUE_TYPE(command_line_switch) \ 65 SINGLE_VALUE_TYPE_AND_VALUE(command_line_switch, "") [all...] |