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

Side by Side Diff: chrome/renderer/net/mockable_one_shot_timer.cc

Issue 136203009: Support auto-reload on errors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Add experiment Created 6 years, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/renderer/net/mockable_one_shot_timer.h"
6
7 MockableOneShotTimer::MockableOneShotTimer() {}
8 MockableOneShotTimer::~MockableOneShotTimer() {}
9
10 void MockableOneShotTimer::Fired() {
11 task_.Run();
12 }
13
14 void MockableOneShotTimer::Start(
15 const tracked_objects::Location& posted_from, base::TimeDelta delay,
16 const base::Closure& task) {
17 DCHECK(!task.is_null());
18 task_ = task;
19 timer_.Start(posted_from, delay,
20 base::Bind(&MockableOneShotTimer::Fired, base::Unretained(this)));
21 }
22
23 void MockableOneShotTimer::Stop() {
24 timer_.Stop();
25 }
26
27 bool MockableOneShotTimer::IsRunning() const {
28 return timer_.IsRunning();
29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698