summaryrefslogtreecommitdiffstats
path: root/base/event_recorder.cc
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-01 04:31:22 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-01 04:31:22 +0000
commit4f09393e0d9f357a271353b727246864378fdf17 (patch)
treec3b561d3384c9287cb11f545fa6adcae9b8d5a55 /base/event_recorder.cc
parente0291ec704fd21a4e99e99c60766c768f58ebcb3 (diff)
downloadchromium_src-4f09393e0d9f357a271353b727246864378fdf17.zip
chromium_src-4f09393e0d9f357a271353b727246864378fdf17.tar.gz
chromium_src-4f09393e0d9f357a271353b727246864378fdf17.tar.bz2
Deprecate wstring version of PathService::Get() in webkit.
Review URL: http://codereview.chromium.org/99266 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15032 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/event_recorder.cc')
-rw-r--r--base/event_recorder.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/event_recorder.cc b/base/event_recorder.cc
index 3bcd0e26..92128af 100644
--- a/base/event_recorder.cc
+++ b/base/event_recorder.cc
@@ -42,7 +42,7 @@ EventRecorder::~EventRecorder() {
DCHECK(!is_recording_ && !is_playing_);
}
-bool EventRecorder::StartRecording(const std::wstring& filename) {
+bool EventRecorder::StartRecording(const FilePath& filename) {
if (journal_hook_ != NULL)
return false;
if (is_recording_ || is_playing_)
@@ -93,7 +93,7 @@ void EventRecorder::StopRecording() {
}
}
-bool EventRecorder::StartPlayback(const std::wstring& filename) {
+bool EventRecorder::StartPlayback(const FilePath& filename) {
if (journal_hook_ != NULL)
return false;
if (is_recording_ || is_playing_)