michael@0: // Copyright (c) 2009 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: #include "base/event_recorder.h" michael@0: michael@0: // This file implements a link stub for EventRecorder that can be used on michael@0: // platforms that don't have a working EventRecorder implementation. michael@0: michael@0: namespace base { michael@0: michael@0: EventRecorder* EventRecorder::current_; // Our singleton. michael@0: michael@0: bool EventRecorder::StartRecording(const FilePath& filename) { michael@0: return true; michael@0: } michael@0: michael@0: void EventRecorder::StopRecording() { michael@0: } michael@0: michael@0: bool EventRecorder::StartPlayback(const FilePath& filename) { michael@0: return false; michael@0: } michael@0: michael@0: void EventRecorder::StopPlayback() { michael@0: } michael@0: michael@0: } // namespace