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

Unified Diff: Source/core/css/CSSCharsetRule.h

Issue 107313004: Remove TreatNullAs=NullString for CSS*Rule (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years 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 | « LayoutTests/fast/dom/css-element-attribute-js-null-expected.txt ('k') | Source/core/css/CSSCharsetRule.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSCharsetRule.h
diff --git a/Source/core/css/CSSCharsetRule.h b/Source/core/css/CSSCharsetRule.h
index ac95a4b648559e3d48eea949f66b271fbfb5e238..929dd290e6c84ac2fa5b34ae1d7dc671190de1db 100644
--- a/Source/core/css/CSSCharsetRule.h
+++ b/Source/core/css/CSSCharsetRule.h
@@ -42,7 +42,7 @@ public:
virtual void reattach(StyleRuleBase* rule) OVERRIDE { ASSERT_UNUSED(rule, !rule); }
const String& encoding() const { return m_encoding; }
- void setEncoding(const String& encoding, ExceptionState&) { m_encoding = encoding; }
+ void setEncoding(const String& encoding) { m_encoding = encoding; }
private:
CSSCharsetRule(CSSStyleSheet* parent, const String& encoding);
« no previous file with comments | « LayoutTests/fast/dom/css-element-attribute-js-null-expected.txt ('k') | Source/core/css/CSSCharsetRule.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698