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

Unified Diff: Source/core/html/HTMLTableSectionElement.h

Issue 99333011: Make sure getAttribute() / setAttribute() callers use AtomicStrings (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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 | « Source/core/html/HTMLTableElement.cpp ('k') | Source/core/html/HTMLTableSectionElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLTableSectionElement.h
diff --git a/Source/core/html/HTMLTableSectionElement.h b/Source/core/html/HTMLTableSectionElement.h
index e309697659467798b4c78b72a4b6da641f057ef9..02d55167adbc8941f007affe18e8de579d7656ab 100644
--- a/Source/core/html/HTMLTableSectionElement.h
+++ b/Source/core/html/HTMLTableSectionElement.h
@@ -41,17 +41,17 @@ public:
int numRows() const;
- String align() const;
- void setAlign(const String&);
+ const AtomicString& align() const;
+ void setAlign(const AtomicString&);
- String ch() const;
- void setCh(const String&);
+ const AtomicString& ch() const;
+ void setCh(const AtomicString&);
- String chOff() const;
- void setChOff(const String&);
+ const AtomicString& chOff() const;
+ void setChOff(const AtomicString&);
- String vAlign() const;
- void setVAlign(const String&);
+ const AtomicString& vAlign() const;
+ void setVAlign(const AtomicString&);
PassRefPtr<HTMLCollection> rows();
« no previous file with comments | « Source/core/html/HTMLTableElement.cpp ('k') | Source/core/html/HTMLTableSectionElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698