| Index: src/dateparser-inl.h
 | 
| diff --git a/src/dateparser-inl.h b/src/dateparser-inl.h
 | 
| index ac28c6225793d0ba3a2187e02e54e3ccb90fc6b2..7f8fac83e660af14054df3980d92cb5ca702783f 100644
 | 
| --- a/src/dateparser-inl.h
 | 
| +++ b/src/dateparser-inl.h
 | 
| @@ -1,4 +1,4 @@
 | 
| -// Copyright 2008 the V8 project authors. All rights reserved.
 | 
| +// Copyright 2011 the V8 project authors. All rights reserved.
 | 
|  // Redistribution and use in source and binary forms, with or without
 | 
|  // modification, are permitted provided that the following conditions are
 | 
|  // met:
 | 
| @@ -34,9 +34,11 @@ namespace v8 {
 | 
|  namespace internal {
 | 
|  
 | 
|  template <typename Char>
 | 
| -bool DateParser::Parse(Vector<Char> str, FixedArray* out) {
 | 
| +bool DateParser::Parse(Vector<Char> str,
 | 
| +                       FixedArray* out,
 | 
| +                       UnicodeCache* unicode_cache) {
 | 
|    ASSERT(out->length() >= OUTPUT_SIZE);
 | 
| -  InputReader<Char> in(str);
 | 
| +  InputReader<Char> in(unicode_cache, str);
 | 
|    TimeZoneComposer tz;
 | 
|    TimeComposer time;
 | 
|    DayComposer day;
 | 
| 
 |