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

Unified Diff: media/capture/capture_resolution_chooser_unittest.cc

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.cc ('k') | media/capture/feedback_signal_accumulator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/capture/capture_resolution_chooser_unittest.cc
diff --git a/content/browser/media/capture/capture_resolution_chooser_unittest.cc b/media/capture/capture_resolution_chooser_unittest.cc
similarity index 95%
rename from content/browser/media/capture/capture_resolution_chooser_unittest.cc
rename to media/capture/capture_resolution_chooser_unittest.cc
index d91c0cec8ddf5f8c1ddc02b24bcabd881d7f6760..6b0e87dbc2461138007c19a1573fa2349dd63d8c 100644
--- a/content/browser/media/capture/capture_resolution_chooser_unittest.cc
+++ b/media/capture/capture_resolution_chooser_unittest.cc
@@ -2,14 +2,14 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/browser/media/capture/capture_resolution_chooser.h"
+#include "media/capture/capture_resolution_chooser.h"
#include "base/location.h"
#include "testing/gtest/include/gtest/gtest.h"
using tracked_objects::Location;
-namespace content {
+namespace media {
namespace {
@@ -41,7 +41,7 @@ TEST(CaptureResolutionChooserTest,
FixedResolutionPolicy_CaptureSizeAlwaysFixed) {
const gfx::Size the_one_frame_size(kMaxFrameWidth, kMaxFrameHeight);
CaptureResolutionChooser chooser(the_one_frame_size,
- media::RESOLUTION_POLICY_FIXED_RESOLUTION);
+ RESOLUTION_POLICY_FIXED_RESOLUTION);
EXPECT_EQ(the_one_frame_size, chooser.capture_size());
chooser.SetSourceSize(the_one_frame_size);
@@ -61,7 +61,7 @@ TEST(CaptureResolutionChooserTest,
FixedAspectRatioPolicy_CaptureSizeHasSameAspectRatio) {
CaptureResolutionChooser chooser(
gfx::Size(kMaxFrameWidth, kMaxFrameHeight),
- media::RESOLUTION_POLICY_FIXED_ASPECT_RATIO);
+ RESOLUTION_POLICY_FIXED_ASPECT_RATIO);
// Starting condition.
const gfx::Size min_size(kMinFrameWidth, kMinFrameHeight);
@@ -125,7 +125,7 @@ TEST(CaptureResolutionChooserTest,
AnyWithinLimitPolicy_CaptureSizeIsAnythingWithinLimits) {
const gfx::Size max_size(kMaxFrameWidth, kMaxFrameHeight);
CaptureResolutionChooser chooser(
- max_size, media::RESOLUTION_POLICY_ANY_WITHIN_LIMIT);
+ max_size, RESOLUTION_POLICY_ANY_WITHIN_LIMIT);
// Starting condition.
EXPECT_EQ(max_size, chooser.capture_size());
@@ -166,4 +166,4 @@ TEST(CaptureResolutionChooserTest,
chooser.capture_size());
}
-} // namespace content
+} // namespace media
« no previous file with comments | « media/capture/capture_resolution_chooser.cc ('k') | media/capture/feedback_signal_accumulator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698