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

Unified Diff: base/timer/mock_elapsed_timer.cc

Issue 338103003: Password bubble: Ensure that the bubble stays open for at least 1 second. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: test Created 6 years, 6 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: base/timer/mock_elapsed_timer.cc
diff --git a/base/timer/mock_elapsed_timer.cc b/base/timer/mock_elapsed_timer.cc
new file mode 100644
index 0000000000000000000000000000000000000000..2f5eaf092f0b0810e0ad379bce8cded91ecad316
--- /dev/null
+++ b/base/timer/mock_elapsed_timer.cc
@@ -0,0 +1,13 @@
+// Copyright 2014 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.
+
+#include "base/timer/mock_elapsed_timer.h"
+
+namespace base {
+
+TimeDelta MockElapsedTimer::Elapsed() const {
+ return delta_;
+}
+
+} // namespace base

Powered by Google App Engine
This is Rietveld 408576698