ipc/chromium/src/base/idle_timer_none.cc

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:2eb89640cb49
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 IdleTimer::IdleTimer(TimeDelta idle_time, bool repeat) {
14 }
15
16 IdleTimer::~IdleTimer() {
17 }
18
19 void IdleTimer::Start() {
20 }
21
22 void IdleTimer::Stop() {
23 }
24
25 } // namespace base

mercurial