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

Side by Side Diff: src/extensions/i18n/i18n-extension.cc

Issue 148573005: A64: Synchronize with r16249. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « src/extensions/i18n/i18n-extension.h ('k') | src/extensions/i18n/i18n-utils.h » ('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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 10 matching lines...) Expand all
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
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 // limitations under the License. 27 // limitations under the License.
28 28
29 #include "i18n-extension.h" 29 #include "i18n-extension.h"
30 30
31 #include "break-iterator.h"
32 #include "collator.h"
33 #include "natives.h" 31 #include "natives.h"
34 32
35 using v8::internal::I18NNatives; 33 using v8::internal::I18NNatives;
36 34
37 namespace v8_i18n { 35 namespace v8_i18n {
38 36
39 Extension::Extension() 37 Extension::Extension()
40 : v8::Extension("v8/i18n", 38 : v8::Extension("v8/i18n",
41 reinterpret_cast<const char*>( 39 reinterpret_cast<const char*>(
42 I18NNatives::GetScriptsSource().start()), 40 I18NNatives::GetScriptsSource().start()),
43 0, 41 0,
44 0, 42 0,
45 I18NNatives::GetScriptsSource().length()) {} 43 I18NNatives::GetScriptsSource().length()) {}
46 44
47 v8::Handle<v8::FunctionTemplate> Extension::GetNativeFunction(
48 v8::Handle<v8::String> name) {
49 // Collator.
50 if (name->Equals(v8::String::New("NativeJSCreateCollator"))) {
51 return v8::FunctionTemplate::New(Collator::JSCreateCollator);
52 } else if (name->Equals(v8::String::New("NativeJSInternalCompare"))) {
53 return v8::FunctionTemplate::New(Collator::JSInternalCompare);
54 }
55
56 // Break iterator.
57 if (name->Equals(v8::String::New("NativeJSCreateBreakIterator"))) {
58 return v8::FunctionTemplate::New(BreakIterator::JSCreateBreakIterator);
59 } else if (name->Equals(v8::String::New("NativeJSBreakIteratorAdoptText"))) {
60 return v8::FunctionTemplate::New(
61 BreakIterator::JSInternalBreakIteratorAdoptText);
62 } else if (name->Equals(v8::String::New("NativeJSBreakIteratorFirst"))) {
63 return v8::FunctionTemplate::New(
64 BreakIterator::JSInternalBreakIteratorFirst);
65 } else if (name->Equals(v8::String::New("NativeJSBreakIteratorNext"))) {
66 return v8::FunctionTemplate::New(
67 BreakIterator::JSInternalBreakIteratorNext);
68 } else if (name->Equals(v8::String::New("NativeJSBreakIteratorCurrent"))) {
69 return v8::FunctionTemplate::New(
70 BreakIterator::JSInternalBreakIteratorCurrent);
71 } else if (name->Equals(v8::String::New("NativeJSBreakIteratorBreakType"))) {
72 return v8::FunctionTemplate::New(
73 BreakIterator::JSInternalBreakIteratorBreakType);
74 }
75
76 return v8::Handle<v8::FunctionTemplate>();
77 }
78
79 45
80 void Extension::Register() { 46 void Extension::Register() {
81 static Extension i18n_extension; 47 static Extension i18n_extension;
82 static v8::DeclareExtension extension_declaration(&i18n_extension); 48 static v8::DeclareExtension extension_declaration(&i18n_extension);
83 } 49 }
84 50
85 } // namespace v8_i18n 51 } // namespace v8_i18n
OLDNEW
« no previous file with comments | « src/extensions/i18n/i18n-extension.h ('k') | src/extensions/i18n/i18n-utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698