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

Unified Diff: Source/core/testing/TypeConversions.h

Issue 313993002: Bindings: Add ScalarValueString support (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Review feedback Created 6 years, 6 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
« no previous file with comments | « Source/bindings/v8/V8Binding.cpp ('k') | Source/core/testing/TypeConversions.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/testing/TypeConversions.h
diff --git a/Source/core/testing/TypeConversions.h b/Source/core/testing/TypeConversions.h
index bce8ed315878c08c880c4740a20772ffb2e152f7..10bea3916782f0823a821cbea25a830050f20bb0 100644
--- a/Source/core/testing/TypeConversions.h
+++ b/Source/core/testing/TypeConversions.h
@@ -62,6 +62,9 @@ public:
const String& testByteString() const { return m_byteString; }
void setTestByteString(const String& value) { m_byteString = value; }
+ const String& testScalarValueString() const { return m_scalarValueString; }
+ void setTestScalarValueString(const String& value) { m_scalarValueString = value; }
+
void trace(Visitor*) { }
private:
@@ -78,6 +81,7 @@ private:
int16_t m_short;
uint16_t m_unsignedShort;
String m_byteString;
+ String m_scalarValueString;
};
} // namespace WebCore
« no previous file with comments | « Source/bindings/v8/V8Binding.cpp ('k') | Source/core/testing/TypeConversions.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698