michael@0: // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. michael@0: // Use of this source code is governed by a BSD-style license that can be michael@0: // found in the LICENSE file. michael@0: michael@0: // A stub implementation of IdleTimer used to provide symbols needed by Chrome. michael@0: // It's unclear whether we need the idle timer in the linux port, so we're michael@0: // leaving it unported for now. michael@0: michael@0: #include "base/idle_timer.h" michael@0: michael@0: namespace base { michael@0: michael@0: IdleTimer::IdleTimer(TimeDelta idle_time, bool repeat) { michael@0: } michael@0: michael@0: IdleTimer::~IdleTimer() { michael@0: } michael@0: michael@0: void IdleTimer::Start() { michael@0: } michael@0: michael@0: void IdleTimer::Stop() { michael@0: } michael@0: michael@0: } // namespace base