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

Unified Diff: media/capture/feedback_signal_accumulator.h

Issue 1162863003: Move ContentVideoCaptureDeviceCore from src/content to src/media (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 6 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 | « media/capture/capture_resolution_chooser_unittest.cc ('k') | media/capture/feedback_signal_accumulator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/capture/feedback_signal_accumulator.h
diff --git a/content/browser/media/capture/feedback_signal_accumulator.h b/media/capture/feedback_signal_accumulator.h
similarity index 89%
rename from content/browser/media/capture/feedback_signal_accumulator.h
rename to media/capture/feedback_signal_accumulator.h
index 6d86109e4739220f29acfa7a949abe0650f382e4..4139f57e7fa5f9630ac5c75015883c57c419683d 100644
--- a/content/browser/media/capture/feedback_signal_accumulator.h
+++ b/media/capture/feedback_signal_accumulator.h
@@ -2,13 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CONTENT_BROWSER_MEDIA_CAPTURE_FEEDBACK_SIGNAL_ACCUMULATOR_H_
-#define CONTENT_BROWSER_MEDIA_CAPTURE_FEEDBACK_SIGNAL_ACCUMULATOR_H_
+#ifndef MEDIA_CAPTURE_FEEDBACK_SIGNAL_ACCUMULATOR_H_
+#define MEDIA_CAPTURE_FEEDBACK_SIGNAL_ACCUMULATOR_H_
#include "base/time/time.h"
-#include "content/common/content_export.h"
+#include "media/base/media_export.h"
-namespace content {
+namespace media {
// Utility class for maintaining an exponentially-decaying average of feedback
// signal values whose updates occur at undetermined, possibly irregular time
@@ -23,7 +23,7 @@ namespace content {
//
// Usage note: Reset() must be called at least once before the first call to
// Update().
-class CONTENT_EXPORT FeedbackSignalAccumulator {
+class MEDIA_EXPORT FeedbackSignalAccumulator {
public:
// |half_life| is the amount of time that must pass between two data points to
// move the accumulated average value halfway in-between. Example: If
@@ -62,6 +62,6 @@ class CONTENT_EXPORT FeedbackSignalAccumulator {
base::TimeTicks prior_update_time_; // |timestamp| in prior call to Update().
};
-} // namespace content
+} // namespace media
-#endif // CONTENT_BROWSER_MEDIA_CAPTURE_FEEDBACK_SIGNAL_ACCUMULATOR_H_
+#endif // MEDIA_CAPTURE_FEEDBACK_SIGNAL_ACCUMULATOR_H_
« no previous file with comments | « media/capture/capture_resolution_chooser_unittest.cc ('k') | media/capture/feedback_signal_accumulator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698