| Index: Source/core/dom/DOMError.h
|
| diff --git a/Source/core/dom/DOMError.h b/Source/core/dom/DOMError.h
|
| index 74d4d176a0e0fa84bfd8c86011e4ff5dd62990ff..a66d0e2175f686d62a065babec403e35445fd363 100644
|
| --- a/Source/core/dom/DOMError.h
|
| +++ b/Source/core/dom/DOMError.h
|
| @@ -59,10 +59,11 @@ public:
|
| const String& name() const { return m_name; }
|
| const String& message() const { return m_message; }
|
|
|
| -private:
|
| +protected:
|
| explicit DOMError(const String& name);
|
| - explicit DOMError(const String& name, const String& message);
|
| + DOMError(const String& name, const String& message);
|
|
|
| +private:
|
| const String m_name;
|
| const String m_message;
|
| };
|
|
|