| Index: content/browser/browser_main_loop.cc
|
| diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
|
| index 1a39c1fd82d53d8be00256b0da3a43d9b16b1573..70f474c20e7539253785f4ced44e0715d791e8bf 100644
|
| --- a/content/browser/browser_main_loop.cc
|
| +++ b/content/browser/browser_main_loop.cc
|
| @@ -323,10 +323,12 @@
|
| // specified on the command-line. Ownership is passed to the caller.
|
| base::win::MemoryPressureMonitor* CreateWinMemoryPressureMonitor(
|
| const base::CommandLine& parsed_command_line) {
|
| - std::vector<std::string> thresholds = base::SplitString(
|
| + std::vector<std::string> thresholds;
|
| + base::SplitString(
|
| parsed_command_line.GetSwitchValueASCII(
|
| switches::kMemoryPressureThresholdsMb),
|
| - ",", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL);
|
| + ',',
|
| + &thresholds);
|
|
|
| int moderate_threshold_mb = 0;
|
| int critical_threshold_mb = 0;
|
|
|