| Index: remoting/ios/app/main.mm
|
| diff --git a/remoting/ios/app/main.mm b/remoting/ios/app/main.mm
|
| index d66bba0264a8fbdac8e55789ec5930c7276d6f5c..611fee9bc5f658ccd59990fe052aa88a53f1e819 100644
|
| --- a/remoting/ios/app/main.mm
|
| +++ b/remoting/ios/app/main.mm
|
| @@ -10,6 +10,7 @@
|
|
|
| #include "base/at_exit.h"
|
| #include "base/command_line.h"
|
| +#include "base/i18n/icu_util.h"
|
| #import "remoting/ios/app/app_delegate.h"
|
|
|
| int main(int argc, char* argv[]) {
|
| @@ -20,6 +21,9 @@ int main(int argc, char* argv[]) {
|
| // Publicize the CommandLine.
|
| base::CommandLine::Init(argc, argv);
|
|
|
| + // Required to find the ICU data file, used by some file_util routines.
|
| + base::i18n::InitializeICU();
|
| +
|
| #ifdef DEBUG
|
| // Set min log level for debug builds. For some reason this has to be
|
| // negative.
|
|
|