Index: Source/bindings/core/v8/Dictionary.h |
diff --git a/Source/bindings/core/v8/Dictionary.h b/Source/bindings/core/v8/Dictionary.h |
index 13cdde933b082096a2a179f6cf99cd3b2481ed00..ef64da165171793462d0ee3564dbc491e6a84cf5 100644 |
--- a/Source/bindings/core/v8/Dictionary.h |
+++ b/Source/bindings/core/v8/Dictionary.h |
@@ -76,18 +76,13 @@ public: |
class ConversionContext { |
public: |
- ConversionContext(const String& interfaceName, const String& methodName, ExceptionState& exceptionState) |
- : m_interfaceName(interfaceName) |
- , m_methodName(methodName) |
- , m_exceptionState(exceptionState) |
+ ConversionContext(ExceptionState& exceptionState) |
haraken
2014/11/14 08:22:24
Add explicit.
bashi
2014/11/14 08:27:18
Done.
|
+ : m_exceptionState(exceptionState) |
, m_dirty(true) |
{ |
resetPerPropertyContext(); |
} |
- const String& interfaceName() const { return m_interfaceName; } |
- const String& methodName() const { return m_methodName; } |
- bool forConstructor() const { return m_methodName.isEmpty(); } |
ExceptionState& exceptionState() const { return m_exceptionState; } |
bool isNullable() const { return m_isNullable; } |
@@ -100,8 +95,6 @@ public: |
void resetPerPropertyContext(); |
private: |
- const String m_interfaceName; |
- const String m_methodName; |
ExceptionState& m_exceptionState; |
bool m_dirty; |