Index: chrome/browser/about_flags.cc |
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc |
index 631bf52ac0d94411dfcfc12cc8f42983067e6aa4..f37f93cee5fd2a72aac39f581e106d85267e56ca 100644 |
--- a/chrome/browser/about_flags.cc |
+++ b/chrome/browser/about_flags.cc |
@@ -704,7 +704,10 @@ void FlagsState::ConvertFlagsToSwitches( |
} |
} |
+// TODO(thakis): Reenable. |
+#if 0 |
command_line->AppendSwitch(switches::kFlagSwitchesBegin); |
+#endif |
flags_switches_.insert( |
std::pair<std::string, std::string>(switches::kFlagSwitchesBegin, |
std::string())); |
@@ -722,11 +725,17 @@ void FlagsState::ConvertFlagsToSwitches( |
const std::pair<std::string, std::string>& |
switch_and_value_pair = name_to_switch_it->second; |
+// TODO(thakis): Reenable. |
+#if 0 |
command_line->AppendSwitchASCII(switch_and_value_pair.first, |
switch_and_value_pair.second); |
+#endif |
flags_switches_[switch_and_value_pair.first] = switch_and_value_pair.second; |
} |
+// TODO(thakis): Reenable. |
+#if 0 |
command_line->AppendSwitch(switches::kFlagSwitchesEnd); |
+#endif |
flags_switches_.insert( |
std::pair<std::string, std::string>(switches::kFlagSwitchesEnd, |
std::string())); |