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

Unified Diff: Source/wtf/Functional.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/Forward.h ('k') | Source/wtf/HashCountedSet.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/Functional.h
diff --git a/Source/wtf/Functional.h b/Source/wtf/Functional.h
index e0adb5f01ab182c7cf106915fa6fa9c634f84220..74c004dd7b68faddb65ed875b855603c41544f12 100644
--- a/Source/wtf/Functional.h
+++ b/Source/wtf/Functional.h
@@ -414,7 +414,7 @@ public:
, m_p2(ParamStorageTraits<P2>::wrap(p2))
{
}
-
+
virtual typename FunctionWrapper::ResultType operator()()
{
return m_functionWrapper(ParamStorageTraits<P1>::unwrap(m_p1), ParamStorageTraits<P2>::unwrap(m_p2));
@@ -460,7 +460,7 @@ public:
, m_p4(ParamStorageTraits<P4>::wrap(p4))
{
}
-
+
virtual typename FunctionWrapper::ResultType operator()()
{
return m_functionWrapper(ParamStorageTraits<P1>::unwrap(m_p1), ParamStorageTraits<P2>::unwrap(m_p2), ParamStorageTraits<P3>::unwrap(m_p3), ParamStorageTraits<P4>::unwrap(m_p4));
@@ -548,7 +548,7 @@ protected:
}
template<typename FunctionType> FunctionImpl<FunctionType>* impl() const
- {
+ {
return static_cast<FunctionImpl<FunctionType>*>(m_impl.get());
}
« no previous file with comments | « Source/wtf/Forward.h ('k') | Source/wtf/HashCountedSet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698