blob: 91f2e072fc980936a5ab964857b7f7c1da7e4574 [file] [log] [blame]
amanda@chromium.org5c44f992009-01-27 01:33:29 +09001// Copyright (c) 2009 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 "base/event_recorder.h"
6
7// This file implements a link stub for EventRecorder that can be used on
8// platforms that don't have a working EventRecorder implementation.
9
10namespace base {
11
12EventRecorder* EventRecorder::current_; // Our singleton.
13
thestig@chromium.org1c939cf2009-05-01 13:31:22 +090014bool EventRecorder::StartRecording(const FilePath& filename) {
amanda@chromium.org5c44f992009-01-27 01:33:29 +090015 return true;
16}
17
18void EventRecorder::StopRecording() {
19}
20
thestig@chromium.org1c939cf2009-05-01 13:31:22 +090021bool EventRecorder::StartPlayback(const FilePath& filename) {
amanda@chromium.org5c44f992009-01-27 01:33:29 +090022 return false;
23}
24
25void EventRecorder::StopPlayback() {
26}
27
28} // namespace