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

Unified Diff: third_party/WebKit/Source/core/dom/SpaceSplitString.h

Issue 2405873003: Reformat a file (Closed)
Patch Set: Created 4 years, 2 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/SpaceSplitString.h
diff --git a/third_party/WebKit/Source/core/dom/SpaceSplitString.h b/third_party/WebKit/Source/core/dom/SpaceSplitString.h
index 791cc8b1331e55c5f83d37e25e35eee07c56b1c5..e9a0a97567e7e078f30c76868f69753d44bc9f55 100644
--- a/third_party/WebKit/Source/core/dom/SpaceSplitString.h
+++ b/third_party/WebKit/Source/core/dom/SpaceSplitString.h
@@ -56,9 +56,7 @@ class SpaceSplitString {
size_t size() const { return m_data ? m_data->size() : 0; }
bool isNull() const { return !m_data; }
- const AtomicString& operator[](size_t i) const {
- return (*m_data)[i];
- }
+ const AtomicString& operator[](size_t i) const { return (*m_data)[i]; }
private:
class Data : public RefCounted<Data> {
@@ -84,9 +82,7 @@ class SpaceSplitString {
bool isUnique() const { return m_keyString.isNull(); }
size_t size() const { return m_vector.size(); }
- const AtomicString& operator[](size_t i) {
- return m_vector[i];
- }
+ const AtomicString& operator[](size_t i) { return m_vector[i]; }
private:
explicit Data(const AtomicString&);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698