Index: chrome/browser/chromeos/touchpad.cc |
=================================================================== |
--- chrome/browser/chromeos/touchpad.cc (revision 27386) |
+++ chrome/browser/chromeos/touchpad.cc (working copy) |
@@ -19,11 +19,14 @@ |
// Allows InvokeLater without adding refcounting. The object is only deleted |
// when its last InvokeLater is run anyway. |
-template <> |
-struct RunnableMethodTraits<Touchpad> { |
- void RetainCallee(Touchpad*) {} |
- void ReleaseCallee(Touchpad*) {} |
-}; |
+template<> |
+void RunnableMethodTraits<Touchpad>::RetainCallee( |
+ Touchpad* remover) { |
+} |
+template<> |
+void RunnableMethodTraits<Touchpad>::ReleaseCallee( |
+ Touchpad* remover) { |
+} |
// static |
void Touchpad::RegisterUserPrefs(PrefService* prefs) { |