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

Unified Diff: Source/bindings/tests/results/core/UnionTypesCore.cpp

Issue 1324643005: bindings: Makes installV8FooTemplate thread-safe. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 5 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 side-by-side diff with in-line comments
Download patch
Index: Source/bindings/tests/results/core/UnionTypesCore.cpp
diff --git a/Source/bindings/tests/results/core/UnionTypesCore.cpp b/Source/bindings/tests/results/core/UnionTypesCore.cpp
index 286260759544260624d1a2c413e55831984a5fad..3b60935f99ed34ca939885b314484403d9264aff 100644
--- a/Source/bindings/tests/results/core/UnionTypesCore.cpp
+++ b/Source/bindings/tests/results/core/UnionTypesCore.cpp
@@ -920,7 +920,7 @@ void TestEnumOrDouble::setTestEnum(String value)
{
ASSERT(isNull());
NonThrowableExceptionState exceptionState;
- static const char* validValues[] = {
+ const char* validValues[] = {
"",
"EnumValue1",
"EnumValue2",
@@ -986,7 +986,7 @@ void V8TestEnumOrDouble::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8Val
V8StringResource<> cppValue = v8Value;
if (!cppValue.prepare(exceptionState))
return;
- static const char* validValues[] = {
+ const char* validValues[] = {
"",
"EnumValue1",
"EnumValue2",
« no previous file with comments | « Source/bindings/templates/interface_base.cpp ('k') | Source/bindings/tests/results/core/V8SVGTestInterface.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698