Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1755)

Unified Diff: content/browser/renderer_host/media/audio_debug_file_writer.h

Issue 2620373005: Rename AudioInputWriter -> AudioFileWriter. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/renderer_host/media/audio_debug_file_writer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/media/audio_debug_file_writer.h
diff --git a/content/browser/renderer_host/media/audio_input_debug_writer.h b/content/browser/renderer_host/media/audio_debug_file_writer.h
similarity index 69%
rename from content/browser/renderer_host/media/audio_input_debug_writer.h
rename to content/browser/renderer_host/media/audio_debug_file_writer.h
index c618667ce05e056ad494adf2d31b88bddce8c03a..1ef10f186b18553f73abb4704db74359396bf592 100644
--- a/content/browser/renderer_host/media/audio_input_debug_writer.h
+++ b/content/browser/renderer_host/media/audio_debug_file_writer.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_AUDIO_INPUT_DEBUG_WRITER_H_
-#define CONTENT_BROWSER_RENDERER_HOST_MEDIA_AUDIO_INPUT_DEBUG_WRITER_H_
+#ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_AUDIO_DEBUG_FILE_WRITER_H_
+#define CONTENT_BROWSER_RENDERER_HOST_MEDIA_AUDIO_DEBUG_FILE_WRITER_H_
#include <stdint.h>
@@ -14,7 +14,7 @@
#include "base/sequence_checker.h"
#include "content/common/content_export.h"
#include "content/public/browser/browser_thread.h"
-#include "media/audio/audio_input_writer.h"
+#include "media/audio/audio_file_writer.h"
#include "media/base/audio_parameters.h"
namespace media {
@@ -27,11 +27,11 @@ namespace content {
// Writes audio input data used for debugging purposes. All operations are
// non-blocking.
-class CONTENT_EXPORT AudioInputDebugWriter
- : public NON_EXPORTED_BASE(media::AudioInputWriter) {
+class CONTENT_EXPORT AudioDebugFileWriter
+ : public NON_EXPORTED_BASE(media::AudioFileWriter) {
public:
- explicit AudioInputDebugWriter(const media::AudioParameters& params);
- ~AudioInputDebugWriter() override;
+ explicit AudioDebugFileWriter(const media::AudioParameters& params);
+ ~AudioDebugFileWriter() override;
void Start(const base::FilePath& file) override;
void Stop() override;
@@ -49,4 +49,4 @@ class CONTENT_EXPORT AudioInputDebugWriter
} // namspace content
-#endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_AUDIO_INPUT_DEBUG_WRITER_H_
+#endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_AUDIO_DEBUG_FILE_WRITER_H_
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/renderer_host/media/audio_debug_file_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698