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

Side by Side Diff: content/browser/renderer_host/media/screen_capture_device_unittest.cc

Issue 18152002: Use a direct include of time headers in content/, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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/renderer_host/media/screen_capture_device.h" 5 #include "content/browser/renderer_host/media/screen_capture_device.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/sequenced_task_runner.h" 8 #include "base/sequenced_task_runner.h"
9 #include "base/synchronization/waitable_event.h" 9 #include "base/synchronization/waitable_event.h"
10 #include "base/test/test_timeouts.h" 10 #include "base/test/test_timeouts.h"
11 #include "base/threading/sequenced_worker_pool.h" 11 #include "base/threading/sequenced_worker_pool.h"
12 #include "base/time.h" 12 #include "base/time/time.h"
13 #include "testing/gmock/include/gmock/gmock.h" 13 #include "testing/gmock/include/gmock/gmock.h"
14 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
15 #include "third_party/webrtc/modules/desktop_capture/desktop_frame.h" 15 #include "third_party/webrtc/modules/desktop_capture/desktop_frame.h"
16 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h" 16 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
17 #include "third_party/webrtc/modules/desktop_capture/screen_capturer.h" 17 #include "third_party/webrtc/modules/desktop_capture/screen_capturer.h"
18 18
19 using ::testing::_; 19 using ::testing::_;
20 using ::testing::DoAll; 20 using ::testing::DoAll;
21 using ::testing::InvokeWithoutArgs; 21 using ::testing::InvokeWithoutArgs;
22 using ::testing::SaveArg; 22 using ::testing::SaveArg;
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 EXPECT_EQ(kTestFrameWidth1, caps.width); 164 EXPECT_EQ(kTestFrameWidth1, caps.width);
165 EXPECT_EQ(kTestFrameHeight1, caps.height); 165 EXPECT_EQ(kTestFrameHeight1, caps.height);
166 EXPECT_EQ(kFrameRate, caps.frame_rate); 166 EXPECT_EQ(kFrameRate, caps.frame_rate);
167 EXPECT_EQ(media::VideoCaptureCapability::kARGB, caps.color); 167 EXPECT_EQ(media::VideoCaptureCapability::kARGB, caps.color);
168 EXPECT_FALSE(caps.interlaced); 168 EXPECT_FALSE(caps.interlaced);
169 169
170 EXPECT_EQ(caps.width * caps.height * 4, frame_size); 170 EXPECT_EQ(caps.width * caps.height * 4, frame_size);
171 } 171 }
172 172
173 } // namespace content 173 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698