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

Unified Diff: Source/wtf/DoublyLinkedList.h

Issue 20300002: Fix trailing whitespace in .cpp, .h, and .idl files (ex. Source/core) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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 | « Source/wtf/DecimalNumber.cpp ('k') | Source/wtf/EnumClass.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/DoublyLinkedList.h
diff --git a/Source/wtf/DoublyLinkedList.h b/Source/wtf/DoublyLinkedList.h
index cd067ef0a8768afb4d00c55733b5015e249e3048..1c822266136c52e9d40325546d7f2fc49538236c 100644
--- a/Source/wtf/DoublyLinkedList.h
+++ b/Source/wtf/DoublyLinkedList.h
@@ -32,10 +32,10 @@ namespace WTF {
template<typename T> class DoublyLinkedListNode {
public:
DoublyLinkedListNode();
-
+
void setPrev(T*);
void setNext(T*);
-
+
T* prev() const;
T* next() const;
};
@@ -69,7 +69,7 @@ template<typename T> inline T* DoublyLinkedListNode<T>::next() const
template<typename T> class DoublyLinkedList {
public:
DoublyLinkedList();
-
+
bool isEmpty() const;
size_t size() const; // This is O(n).
void clear();
« no previous file with comments | « Source/wtf/DecimalNumber.cpp ('k') | Source/wtf/EnumClass.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698