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" | |
33 #include "i18n-locale.h" | 32 #include "i18n-locale.h" |
34 #include "natives.h" | 33 #include "natives.h" |
35 | 34 |
36 namespace v8 { | 35 namespace v8 { |
37 namespace internal { | 36 namespace internal { |
38 | 37 |
39 I18NExtension* I18NExtension::extension_ = NULL; | 38 I18NExtension* I18NExtension::extension_ = NULL; |
40 | 39 |
41 // Returns a pointer to static string containing the actual | 40 // Returns a pointer to static string containing the actual |
42 // JavaScript code generated from i18n.js file. | 41 // JavaScript code generated from i18n.js file. |
(...skipping 10 matching lines...) Expand all Loading... |
53 } | 52 } |
54 | 53 |
55 v8::Handle<v8::FunctionTemplate> I18NExtension::GetNativeFunction( | 54 v8::Handle<v8::FunctionTemplate> I18NExtension::GetNativeFunction( |
56 v8::Handle<v8::String> name) { | 55 v8::Handle<v8::String> name) { |
57 if (name->Equals(v8::String::New("NativeJSLocale"))) { | 56 if (name->Equals(v8::String::New("NativeJSLocale"))) { |
58 return v8::FunctionTemplate::New(I18NLocale::JSLocale); | 57 return v8::FunctionTemplate::New(I18NLocale::JSLocale); |
59 } else if (name->Equals(v8::String::New("NativeJSBreakIterator"))) { | 58 } else if (name->Equals(v8::String::New("NativeJSBreakIterator"))) { |
60 return v8::FunctionTemplate::New(BreakIterator::JSBreakIterator); | 59 return v8::FunctionTemplate::New(BreakIterator::JSBreakIterator); |
61 } else if (name->Equals(v8::String::New("NativeJSCollator"))) { | 60 } else if (name->Equals(v8::String::New("NativeJSCollator"))) { |
62 return v8::FunctionTemplate::New(Collator::JSCollator); | 61 return v8::FunctionTemplate::New(Collator::JSCollator); |
63 } else if (name->Equals(v8::String::New("NativeJSDateTimeFormat"))) { | |
64 return v8::FunctionTemplate::New(DateTimeFormat::JSDateTimeFormat); | |
65 } | 62 } |
66 | 63 |
67 return v8::Handle<v8::FunctionTemplate>(); | 64 return v8::Handle<v8::FunctionTemplate>(); |
68 } | 65 } |
69 | 66 |
70 I18NExtension* I18NExtension::get() { | 67 I18NExtension* I18NExtension::get() { |
71 if (!extension_) { | 68 if (!extension_) { |
72 extension_ = new I18NExtension(); | 69 extension_ = new I18NExtension(); |
73 } | 70 } |
74 return extension_; | 71 return extension_; |
75 } | 72 } |
76 | 73 |
77 void I18NExtension::Register() { | 74 void I18NExtension::Register() { |
78 static v8::DeclareExtension i18n_extension_declaration(I18NExtension::get()); | 75 static v8::DeclareExtension i18n_extension_declaration(I18NExtension::get()); |
79 } | 76 } |
80 | 77 |
81 #ifdef V8_SHARED | |
82 // We end up dragging in a call to Malloc::FatalProcessOutOfMemory by including | |
83 // allocation.h, but that function isn't public V8 API so it's not available | |
84 // when v8 is build as DLL. | |
85 // Define it as a no-op here. | |
86 void Malloced::FatalProcessOutOfMemory() { | |
87 } | |
88 #endif | |
89 | |
90 } } // namespace v8::internal | 78 } } // namespace v8::internal |
OLD | NEW |