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

Side by Side Diff: src/runtime/runtime.h

Issue 1985423003: Invalidate defaultObjects if timezone changes (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fixes after review Created 4 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 unified diff | Download patch
« no previous file with comments | « src/js/i18n.js ('k') | src/runtime/runtime-i18n.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project 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 #ifndef V8_RUNTIME_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/base/platform/time.h" 9 #include "src/base/platform/time.h"
10 #include "src/objects.h" 10 #include "src/objects.h"
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 F(InternalCompare, 3, 1) \ 258 F(InternalCompare, 3, 1) \
259 F(StringNormalize, 2, 1) \ 259 F(StringNormalize, 2, 1) \
260 F(CreateBreakIterator, 3, 1) \ 260 F(CreateBreakIterator, 3, 1) \
261 F(BreakIteratorAdoptText, 2, 1) \ 261 F(BreakIteratorAdoptText, 2, 1) \
262 F(BreakIteratorFirst, 1, 1) \ 262 F(BreakIteratorFirst, 1, 1) \
263 F(BreakIteratorNext, 1, 1) \ 263 F(BreakIteratorNext, 1, 1) \
264 F(BreakIteratorCurrent, 1, 1) \ 264 F(BreakIteratorCurrent, 1, 1) \
265 F(BreakIteratorBreakType, 1, 1) \ 265 F(BreakIteratorBreakType, 1, 1) \
266 F(StringToLowerCaseI18N, 1, 1) \ 266 F(StringToLowerCaseI18N, 1, 1) \
267 F(StringToUpperCaseI18N, 1, 1) \ 267 F(StringToUpperCaseI18N, 1, 1) \
268 F(StringLocaleConvertCase, 3, 1) 268 F(StringLocaleConvertCase, 3, 1) \
269 F(DateCacheVersion, 0, 1)
269 #else 270 #else
270 #define FOR_EACH_INTRINSIC_I18N(F) 271 #define FOR_EACH_INTRINSIC_I18N(F)
271 #endif 272 #endif
272 273
273 #define FOR_EACH_INTRINSIC_INTERNAL(F) \ 274 #define FOR_EACH_INTRINSIC_INTERNAL(F) \
274 F(CheckIsBootstrapping, 0, 1) \ 275 F(CheckIsBootstrapping, 0, 1) \
275 F(ExportFromRuntime, 1, 1) \ 276 F(ExportFromRuntime, 1, 1) \
276 F(ExportExperimentalFromRuntime, 1, 1) \ 277 F(ExportExperimentalFromRuntime, 1, 1) \
277 F(InstallToContext, 1, 1) \ 278 F(InstallToContext, 1, 1) \
278 F(Throw, 1, 1) \ 279 F(Throw, 1, 1) \
(...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after
1169 1170
1170 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 1171 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
1171 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 1172 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
1172 STATIC_ASSERT(LANGUAGE_END == 3); 1173 STATIC_ASSERT(LANGUAGE_END == 3);
1173 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 1174 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
1174 1175
1175 } // namespace internal 1176 } // namespace internal
1176 } // namespace v8 1177 } // namespace v8
1177 1178
1178 #endif // V8_RUNTIME_RUNTIME_H_ 1179 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/js/i18n.js ('k') | src/runtime/runtime-i18n.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698