OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "remoting/host/video_frame_capturer.h" | 5 #include "remoting/capturer/video_frame_capturer.h" |
6 | 6 |
7 #include <ApplicationServices/ApplicationServices.h> | 7 #include <ApplicationServices/ApplicationServices.h> |
8 | 8 |
9 #include <ostream> | 9 #include <ostream> |
10 | 10 |
11 #include "base/bind.h" | 11 #include "base/bind.h" |
12 #include "base/callback.h" | 12 #include "base/callback.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "remoting/base/capture_data.h" | 14 #include "remoting/capturer/capture_data.h" |
15 #include "remoting/host/host_mock_objects.h" | 15 #include "remoting/capturer/video_capturer_mock_objects.h" |
16 #include "remoting/proto/control.pb.h" | |
17 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
18 | 17 |
19 using ::testing::_; | 18 using ::testing::_; |
20 using ::testing::AnyNumber; | 19 using ::testing::AnyNumber; |
21 | 20 |
22 namespace remoting { | 21 namespace remoting { |
23 | 22 |
24 // Verify that the OS is at least Snow Leopard (10.6). | 23 // Verify that the OS is at least Snow Leopard (10.6). |
25 // Chromoting doesn't support 10.5 or earlier. | 24 // Chromoting doesn't support 10.5 or earlier. |
26 bool CheckSnowLeopard() { | 25 bool CheckSnowLeopard() { |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 for (SkRegion::Iterator i(region); !i.done(); i.next()) { | 117 for (SkRegion::Iterator i(region); !i.done(); i.next()) { |
119 const SkIRect& r = i.rect(); | 118 const SkIRect& r = i.rect(); |
120 out << "(" << r.fLeft << "," << r.fTop << "," | 119 out << "(" << r.fLeft << "," << r.fTop << "," |
121 << r.fRight << "," << r.fBottom << ")"; | 120 << r.fRight << "," << r.fBottom << ")"; |
122 } | 121 } |
123 out << ")"; | 122 out << ")"; |
124 return out; | 123 return out; |
125 } | 124 } |
126 | 125 |
127 } // namespace gfx | 126 } // namespace gfx |
OLD | NEW |