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

Side by Side Diff: src/extensions/externalize-string-extension.cc

Issue 7785027: Make a static non-POD object a static raw pointer instead. (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Created 9 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 if (args.Length() != 1 || !args[0]->IsString()) { 126 if (args.Length() != 1 || !args[0]->IsString()) {
127 return v8::ThrowException(v8::String::New( 127 return v8::ThrowException(v8::String::New(
128 "isAsciiString() requires a single string argument.")); 128 "isAsciiString() requires a single string argument."));
129 } 129 }
130 return Utils::OpenHandle(*args[0].As<v8::String>())->IsAsciiRepresentation() ? 130 return Utils::OpenHandle(*args[0].As<v8::String>())->IsAsciiRepresentation() ?
131 v8::True() : v8::False(); 131 v8::True() : v8::False();
132 } 132 }
133 133
134 134
135 void ExternalizeStringExtension::Register() { 135 void ExternalizeStringExtension::Register() {
136 static ExternalizeStringExtension externalize_extension; 136 static ExternalizeStringExtension* externalize_extension;
mnaganov (inactive) 2011/08/31 14:04:48 For clarity, please initialize with NULL.
tfarina 2011/08/31 19:04:00 Done.
137 if (!externalize_extension)
mnaganov (inactive) 2011/08/31 14:04:48 externalize_extension == NULL
tfarina 2011/08/31 19:04:00 Done.
138 externalize_extension = new ExternalizeStringExtension;
137 static v8::DeclareExtension externalize_extension_declaration( 139 static v8::DeclareExtension externalize_extension_declaration(
tfarina 2011/08/31 13:54:21 Mad why we do this with externalize_extension_decl
138 &externalize_extension); 140 externalize_extension);
139 } 141 }
140 142
141 } } // namespace v8::internal 143 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698