OLD | NEW |
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 30 matching lines...) Expand all Loading... |
41 | 41 |
42 #if !defined(OS_ANDROID) | 42 #if !defined(OS_ANDROID) |
43 // ICU DateFormat class (used in base/time_format.cc) needs to get the | 43 // ICU DateFormat class (used in base/time_format.cc) needs to get the |
44 // Olson timezone ID by accessing the zoneinfo files on disk. After | 44 // Olson timezone ID by accessing the zoneinfo files on disk. After |
45 // TimeZone::createDefault is called once here, the timezone ID is | 45 // TimeZone::createDefault is called once here, the timezone ID is |
46 // cached and there's no more need to access the file system. | 46 // cached and there's no more need to access the file system. |
47 scoped_ptr<icu::TimeZone> zone(icu::TimeZone::createDefault()); | 47 scoped_ptr<icu::TimeZone> zone(icu::TimeZone::createDefault()); |
48 #endif | 48 #endif |
49 } | 49 } |
50 } | 50 } |
OLD | NEW |