Index: base/timer.h |
diff --git a/base/timer.h b/base/timer.h |
index 0df026c999538bd36e69451f8fe78572e487d00c..9c9bec777975e136a18d43519685ee5e6851eec6 100644 |
--- a/base/timer.h |
+++ b/base/timer.h |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
@@ -18,7 +18,8 @@ |
// class MyClass { |
// public: |
// void StartDoingStuff() { |
-// timer_.Start(TimeDelta::FromSeconds(1), this, &MyClass::DoStuff); |
+// timer_.Start(FROM_HERE, TimeDelta::FromSeconds(1), |
+// this, &MyClass::DoStuff); |
// } |
// void StopDoingStuff() { |
// timer_.Stop(); |