| Index: third_party/WebKit/Source/core/css/StyleRuleNamespace.h
|
| diff --git a/third_party/WebKit/Source/core/css/StyleRuleNamespace.h b/third_party/WebKit/Source/core/css/StyleRuleNamespace.h
|
| index dd3d031c60c4a80ed5e1b9c3ed2e936d286ba46a..54bfb1a6b1d37e828899e9d988efdccefa6e7592 100644
|
| --- a/third_party/WebKit/Source/core/css/StyleRuleNamespace.h
|
| +++ b/third_party/WebKit/Source/core/css/StyleRuleNamespace.h
|
| @@ -17,6 +17,10 @@ class StyleRuleNamespace final : public StyleRuleBase {
|
| return new StyleRuleNamespace(prefix, uri);
|
| }
|
|
|
| + StyleRuleNamespace* copy() const {
|
| + return new StyleRuleNamespace(m_prefix, m_uri);
|
| + }
|
| +
|
| AtomicString prefix() const { return m_prefix; }
|
| AtomicString uri() const { return m_uri; }
|
|
|
|
|