1 : // Copyright (c) 2006-2008 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 : // A stub implementation of IdleTimer used to provide symbols needed by Chrome.
6 : // It's unclear whether we need the idle timer in the linux port, so we're
7 : // leaving it unported for now.
8 :
9 : #include "base/idle_timer.h"
10 :
11 : namespace base {
12 :
13 0 : IdleTimer::IdleTimer(TimeDelta idle_time, bool repeat) {
14 0 : }
15 :
16 0 : IdleTimer::~IdleTimer() {
17 0 : }
18 :
19 0 : void IdleTimer::Start() {
20 0 : }
21 :
22 0 : void IdleTimer::Stop() {
23 0 : }
24 :
25 : } // namespace base
|