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

Side by Side Diff: services/service_manager/public/cpp/lib/initialize_base_and_icu.cc

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase Created 4 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file declares a raw symbol and should be included only once in a 5 // This file declares a raw symbol and should be included only once in a
6 // certain binary target. This needs to be run before we raise the sandbox, 6 // certain binary target. This needs to be run before we raise the sandbox,
7 // which means that it can't use mojo. Our runners will dig around in the 7 // which means that it can't use mojo. Our runners will dig around in the
8 // symbol table and run this before the mojo system is initialized. 8 // symbol table and run this before the mojo system is initialized.
9 9
10 #include <stdint.h> 10 #include <stdint.h>
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 #if !defined(OS_ANDROID) 44 #if !defined(OS_ANDROID)
45 // ICU DateFormat class (used in base/time_format.cc) needs to get the 45 // ICU DateFormat class (used in base/time_format.cc) needs to get the
46 // Olson timezone ID by accessing the zoneinfo files on disk. After 46 // Olson timezone ID by accessing the zoneinfo files on disk. After
47 // TimeZone::createDefault is called once here, the timezone ID is 47 // TimeZone::createDefault is called once here, the timezone ID is
48 // cached and there's no more need to access the file system. 48 // cached and there's no more need to access the file system.
49 std::unique_ptr<icu::TimeZone> zone(icu::TimeZone::createDefault()); 49 std::unique_ptr<icu::TimeZone> zone(icu::TimeZone::createDefault());
50 #endif 50 #endif
51 } 51 }
52 } 52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698