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

Side by Side Diff: media/capture/animated_content_sampler_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 unified diff | Download patch
« no previous file with comments | « media/capture/animated_content_sampler.cc ('k') | media/capture/capture_resolution_chooser.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/media/capture/animated_content_sampler.h" 5 #include "media/capture/animated_content_sampler.h"
6 6
7 #include <cmath> 7 #include <cmath>
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "base/time/time.h" 13 #include "base/time/time.h"
14 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
15 #include "ui/gfx/geometry/rect.h" 15 #include "ui/gfx/geometry/rect.h"
16 16
17 namespace content { 17 namespace media {
18 18
19 namespace { 19 namespace {
20 20
21 base::TimeTicks InitialTestTimeTicks() { 21 base::TimeTicks InitialTestTimeTicks() {
22 return base::TimeTicks() + base::TimeDelta::FromSeconds(1); 22 return base::TimeTicks() + base::TimeDelta::FromSeconds(1);
23 } 23 }
24 24
25 base::TimeDelta FpsAsPeriod(int frame_rate) { 25 base::TimeDelta FpsAsPeriod(int frame_rate) {
26 return base::TimeDelta::FromSeconds(1) / frame_rate; 26 return base::TimeDelta::FromSeconds(1) / frame_rate;
27 } 27 }
(...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after
809 Scenario(60, 30, 20), 809 Scenario(60, 30, 20),
810 Scenario(60, 30, 23), 810 Scenario(60, 30, 23),
811 Scenario(60, 30, 26), 811 Scenario(60, 30, 26),
812 Scenario(60, 30, 27), 812 Scenario(60, 30, 27),
813 Scenario(60, 30, 28), 813 Scenario(60, 30, 28),
814 Scenario(60, 30, 29), 814 Scenario(60, 30, 29),
815 Scenario(60, 30, 31), 815 Scenario(60, 30, 31),
816 Scenario(60, 30, 32), 816 Scenario(60, 30, 32),
817 Scenario(60, 30, 33))); 817 Scenario(60, 30, 33)));
818 818
819 } // namespace content 819 } // namespace media
OLDNEW
« no previous file with comments | « media/capture/animated_content_sampler.cc ('k') | media/capture/capture_resolution_chooser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698