| Index: chrome/utility/importer/firefox_importer_unittest_utils_mac.cc
|
| diff --git a/chrome/utility/importer/firefox_importer_unittest_utils_mac.cc b/chrome/utility/importer/firefox_importer_unittest_utils_mac.cc
|
| index cbbf5a94b265271802bcdd3e04b6550cb45f741c..4b5bc871953bb5e80cceed18a61171dec8e0ec8d 100644
|
| --- a/chrome/utility/importer/firefox_importer_unittest_utils_mac.cc
|
| +++ b/chrome/utility/importer/firefox_importer_unittest_utils_mac.cc
|
| @@ -10,6 +10,7 @@
|
| #include "base/file_util.h"
|
| #include "base/files/file_path.h"
|
| #include "base/message_loop/message_loop.h"
|
| +#include "base/posix/global_descriptors.h"
|
| #include "base/process/kill.h"
|
| #include "base/process/launch.h"
|
| #include "base/test/test_timeouts.h"
|
| @@ -52,7 +53,8 @@ bool LaunchNSSDecrypterChildProcess(const base::FilePath& nss_path,
|
|
|
| file_util::ScopedFD client_file_descriptor_closer(&ipcfd);
|
| base::FileHandleMappingVector fds_to_map;
|
| - fds_to_map.push_back(std::pair<int,int>(ipcfd, kPrimaryIPCChannel + 3));
|
| + fds_to_map.push_back(std::pair<int,int>(ipcfd,
|
| + kPrimaryIPCChannel + base::GlobalDescriptors::kBaseDescriptor));
|
|
|
| bool debug_on_start = CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kDebugChildren);
|
|
|