Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(985)

Unified Diff: remoting/ios/app/main.mm

Issue 2912293003: [CRD iOS] Consistent host list order and showing last online time (Closed)
Patch Set: Fix comment Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698