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
diff --git a/base/event_recorder.cc b/base/event_recorder.cc
index 3bcd0e26..92128af7 100644
--- a/base/event_recorder.cc
+++ b/base/event_recorder.cc
@@ -42,7 +42,7 @@
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 @@
}
}
-bool EventRecorder::StartPlayback(const std::wstring& filename) {
+bool EventRecorder::StartPlayback(const FilePath& filename) {
if (journal_hook_ != NULL)
return false;
if (is_recording_ || is_playing_)