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 "src/extensions/experimental/i18n-extension.h" | 28 #include "src/extensions/experimental/i18n-extension.h" |
29 | 29 |
30 #include "src/extensions/experimental/break-iterator.h" | 30 #include "src/extensions/experimental/break-iterator.h" |
31 #include "src/extensions/experimental/collator.h" | 31 #include "src/extensions/experimental/collator.h" |
| 32 #include "src/extensions/experimental/datetime-format.h" |
32 #include "src/extensions/experimental/i18n-locale.h" | 33 #include "src/extensions/experimental/i18n-locale.h" |
33 #include "src/extensions/experimental/i18n-natives.h" | 34 #include "src/extensions/experimental/i18n-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 I18NExtension::I18NExtension() | 41 I18NExtension::I18NExtension() |
41 : v8::Extension("v8/i18n", I18Natives::GetScriptSource()) { | 42 : v8::Extension("v8/i18n", I18Natives::GetScriptSource()) { |
42 } | 43 } |
43 | 44 |
44 v8::Handle<v8::FunctionTemplate> I18NExtension::GetNativeFunction( | 45 v8::Handle<v8::FunctionTemplate> I18NExtension::GetNativeFunction( |
45 v8::Handle<v8::String> name) { | 46 v8::Handle<v8::String> name) { |
46 if (name->Equals(v8::String::New("NativeJSLocale"))) { | 47 if (name->Equals(v8::String::New("NativeJSLocale"))) { |
47 return v8::FunctionTemplate::New(I18NLocale::JSLocale); | 48 return v8::FunctionTemplate::New(I18NLocale::JSLocale); |
48 } else if (name->Equals(v8::String::New("NativeJSBreakIterator"))) { | 49 } else if (name->Equals(v8::String::New("NativeJSBreakIterator"))) { |
49 return v8::FunctionTemplate::New(BreakIterator::JSBreakIterator); | 50 return v8::FunctionTemplate::New(BreakIterator::JSBreakIterator); |
50 } else if (name->Equals(v8::String::New("NativeJSCollator"))) { | 51 } else if (name->Equals(v8::String::New("NativeJSCollator"))) { |
51 return v8::FunctionTemplate::New(Collator::JSCollator); | 52 return v8::FunctionTemplate::New(Collator::JSCollator); |
| 53 } else if (name->Equals(v8::String::New("NativeJSDateTimeFormat"))) { |
| 54 return v8::FunctionTemplate::New(DateTimeFormat::JSDateTimeFormat); |
52 } | 55 } |
53 | 56 |
54 return v8::Handle<v8::FunctionTemplate>(); | 57 return v8::Handle<v8::FunctionTemplate>(); |
55 } | 58 } |
56 | 59 |
57 I18NExtension* I18NExtension::get() { | 60 I18NExtension* I18NExtension::get() { |
58 if (!extension_) { | 61 if (!extension_) { |
59 extension_ = new I18NExtension(); | 62 extension_ = new I18NExtension(); |
60 } | 63 } |
61 return extension_; | 64 return extension_; |
62 } | 65 } |
63 | 66 |
64 void I18NExtension::Register() { | 67 void I18NExtension::Register() { |
65 static v8::DeclareExtension i18n_extension_declaration(I18NExtension::get()); | 68 static v8::DeclareExtension i18n_extension_declaration(I18NExtension::get()); |
66 } | 69 } |
67 | 70 |
68 } } // namespace v8::internal | 71 } } // namespace v8::internal |
OLD | NEW |