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

Unified Diff: third_party/WebKit/Source/wtf/LinkedHashSet.h

Issue 2386843002: reflow comments in wtf (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
Index: third_party/WebKit/Source/wtf/LinkedHashSet.h
diff --git a/third_party/WebKit/Source/wtf/LinkedHashSet.h b/third_party/WebKit/Source/wtf/LinkedHashSet.h
index fa5f701f887b53ee3191c4216581313726ef7ecb..0289cdb6e5d84338a2b14ca60d1d675a1db660b5 100644
--- a/third_party/WebKit/Source/wtf/LinkedHashSet.h
+++ b/third_party/WebKit/Source/wtf/LinkedHashSet.h
@@ -1,5 +1,6 @@
/*
- * Copyright (C) 2005, 2006, 2007, 2008, 2011, 2012 Apple Inc. All rights reserved.
+ * Copyright (C) 2005, 2006, 2007, 2008, 2011, 2012 Apple Inc. All rights
+ * reserved.
* Copyright (C) 2011, Benjamin Poulain <ikipou@gmail.com>
*
* This library is free software; you can redistribute it and/or
@@ -246,8 +247,8 @@ class LinkedHashSet {
const_iterator find(ValuePeekInType) const;
bool contains(ValuePeekInType) const;
- // An alternate version of find() that finds the object by hashing and comparing
- // with some other type, to avoid the cost of type conversion.
+ // An alternate version of find() that finds the object by hashing and
+ // comparing with some other type, to avoid the cost of type conversion.
// The HashTranslator interface is defined in HashSet.
template <typename HashTranslator, typename T>
iterator find(const T&);
@@ -273,8 +274,8 @@ class LinkedHashSet {
template <typename IncomingValueType>
AddResult appendOrMoveToLast(IncomingValueType&&);
- // Add the value to the beginning of the collection. If the value was already in
- // the list, it is moved to the beginning.
+ // Add the value to the beginning of the collection. If the value was already
+ // in the list, it is moved to the beginning.
template <typename IncomingValueType>
AddResult prependOrMoveToFirst(IncomingValueType&&);

Powered by Google App Engine
This is Rietveld 408576698