| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 #include "i18n-extension.h" | 28 #include "i18n-extension.h" |
| 29 | 29 |
| 30 #include "break-iterator.h" | 30 #include "break-iterator.h" |
| 31 #include "collator.h" | 31 #include "collator.h" |
| 32 #include "datetime-format.h" |
| 32 #include "i18n-locale.h" | 33 #include "i18n-locale.h" |
| 33 #include "natives.h" | 34 #include "natives.h" |
| 34 | 35 |
| 35 namespace v8 { | 36 namespace v8 { |
| 36 namespace internal { | 37 namespace internal { |
| 37 | 38 |
| 38 I18NExtension* I18NExtension::extension_ = NULL; | 39 I18NExtension* I18NExtension::extension_ = NULL; |
| 39 | 40 |
| 40 // Returns a pointer to static string containing the actual | 41 // Returns a pointer to static string containing the actual |
| 41 // JavaScript code generated from i18n.js file. | 42 // JavaScript code generated from i18n.js file. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 52 } | 53 } |
| 53 | 54 |
| 54 v8::Handle<v8::FunctionTemplate> I18NExtension::GetNativeFunction( | 55 v8::Handle<v8::FunctionTemplate> I18NExtension::GetNativeFunction( |
| 55 v8::Handle<v8::String> name) { | 56 v8::Handle<v8::String> name) { |
| 56 if (name->Equals(v8::String::New("NativeJSLocale"))) { | 57 if (name->Equals(v8::String::New("NativeJSLocale"))) { |
| 57 return v8::FunctionTemplate::New(I18NLocale::JSLocale); | 58 return v8::FunctionTemplate::New(I18NLocale::JSLocale); |
| 58 } else if (name->Equals(v8::String::New("NativeJSBreakIterator"))) { | 59 } else if (name->Equals(v8::String::New("NativeJSBreakIterator"))) { |
| 59 return v8::FunctionTemplate::New(BreakIterator::JSBreakIterator); | 60 return v8::FunctionTemplate::New(BreakIterator::JSBreakIterator); |
| 60 } else if (name->Equals(v8::String::New("NativeJSCollator"))) { | 61 } else if (name->Equals(v8::String::New("NativeJSCollator"))) { |
| 61 return v8::FunctionTemplate::New(Collator::JSCollator); | 62 return v8::FunctionTemplate::New(Collator::JSCollator); |
| 63 } else if (name->Equals(v8::String::New("NativeJSDateTimeFormat"))) { |
| 64 return v8::FunctionTemplate::New(DateTimeFormat::JSDateTimeFormat); |
| 62 } | 65 } |
| 63 | 66 |
| 64 return v8::Handle<v8::FunctionTemplate>(); | 67 return v8::Handle<v8::FunctionTemplate>(); |
| 65 } | 68 } |
| 66 | 69 |
| 67 I18NExtension* I18NExtension::get() { | 70 I18NExtension* I18NExtension::get() { |
| 68 if (!extension_) { | 71 if (!extension_) { |
| 69 extension_ = new I18NExtension(); | 72 extension_ = new I18NExtension(); |
| 70 } | 73 } |
| 71 return extension_; | 74 return extension_; |
| 72 } | 75 } |
| 73 | 76 |
| 74 void I18NExtension::Register() { | 77 void I18NExtension::Register() { |
| 75 static v8::DeclareExtension i18n_extension_declaration(I18NExtension::get()); | 78 static v8::DeclareExtension i18n_extension_declaration(I18NExtension::get()); |
| 76 } | 79 } |
| 77 | 80 |
| 78 } } // namespace v8::internal | 81 } } // namespace v8::internal |
| OLD | NEW |