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

Unified Diff: media/capture/video_capture_oracle.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/thread_safe_capture_oracle.cc ('k') | media/capture/video_capture_oracle.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/capture/video_capture_oracle.h
diff --git a/content/browser/media/capture/video_capture_oracle.h b/media/capture/video_capture_oracle.h
similarity index 89%
rename from content/browser/media/capture/video_capture_oracle.h
rename to media/capture/video_capture_oracle.h
index db8ae41f65118bdc43bf5a5ae4cb08baef853fb6..8e2980dab0a0aba8e9402f113d5375c6f7680fa8 100644
--- a/content/browser/media/capture/video_capture_oracle.h
+++ b/media/capture/video_capture_oracle.h
@@ -2,24 +2,24 @@
// 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_VIDEO_CAPTURE_ORACLE_H_
-#define CONTENT_BROWSER_MEDIA_CAPTURE_VIDEO_CAPTURE_ORACLE_H_
+#ifndef MEDIA_CAPTURE_VIDEO_CAPTURE_ORACLE_H_
+#define MEDIA_CAPTURE_VIDEO_CAPTURE_ORACLE_H_
#include "base/callback_forward.h"
#include "base/memory/scoped_ptr.h"
#include "base/time/time.h"
-#include "content/browser/media/capture/animated_content_sampler.h"
-#include "content/browser/media/capture/smooth_event_sampler.h"
-#include "content/common/content_export.h"
+#include "media/base/media_export.h"
+#include "media/capture/animated_content_sampler.h"
+#include "media/capture/smooth_event_sampler.h"
#include "ui/gfx/geometry/rect.h"
-namespace content {
+namespace media {
// VideoCaptureOracle manages the producer-side throttling of captured frames
// from a video capture device. It is informed of every update by the device;
// this empowers it to look into the future and decide if a particular frame
// ought to be captured in order to achieve its target frame rate.
-class CONTENT_EXPORT VideoCaptureOracle {
+class MEDIA_EXPORT VideoCaptureOracle {
public:
enum Event {
kTimerPoll,
@@ -105,6 +105,6 @@ class CONTENT_EXPORT VideoCaptureOracle {
base::TimeTicks frame_timestamps_[kMaxFrameTimestamps];
};
-} // namespace content
+} // namespace media
-#endif // CONTENT_BROWSER_MEDIA_CAPTURE_VIDEO_CAPTURE_ORACLE_H_
+#endif // MEDIA_CAPTURE_VIDEO_CAPTURE_ORACLE_H_
« no previous file with comments | « media/capture/thread_safe_capture_oracle.cc ('k') | media/capture/video_capture_oracle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698