OLD | NEW |
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 Loading... |
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 |
OLD | NEW |