| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 rtc::scoped_ptr<DesktopFrame> frame_; | 42 rtc::scoped_ptr<DesktopFrame> frame_; |
| 43 | 43 |
| 44 DISALLOW_COPY_AND_ASSIGN(Core); | 44 DISALLOW_COPY_AND_ASSIGN(Core); |
| 45 }; | 45 }; |
| 46 | 46 |
| 47 SharedDesktopFrame::~SharedDesktopFrame() {} | 47 SharedDesktopFrame::~SharedDesktopFrame() {} |
| 48 | 48 |
| 49 // static | 49 // static |
| 50 SharedDesktopFrame* SharedDesktopFrame::Wrap( | 50 SharedDesktopFrame* SharedDesktopFrame::Wrap( |
| 51 DesktopFrame* desktop_frame) { | 51 DesktopFrame* desktop_frame) { |
| 52 scoped_refptr<Core> core(new Core(desktop_frame)); | 52 rtc::scoped_refptr<Core> core(new Core(desktop_frame)); |
| 53 return new SharedDesktopFrame(core); | 53 return new SharedDesktopFrame(core); |
| 54 } | 54 } |
| 55 | 55 |
| 56 DesktopFrame* SharedDesktopFrame::GetUnderlyingFrame() { | 56 DesktopFrame* SharedDesktopFrame::GetUnderlyingFrame() { |
| 57 return core_->frame(); | 57 return core_->frame(); |
| 58 } | 58 } |
| 59 | 59 |
| 60 SharedDesktopFrame* SharedDesktopFrame::Share() { | 60 SharedDesktopFrame* SharedDesktopFrame::Share() { |
| 61 SharedDesktopFrame* result = new SharedDesktopFrame(core_); | 61 SharedDesktopFrame* result = new SharedDesktopFrame(core_); |
| 62 result->set_dpi(dpi()); | 62 result->set_dpi(dpi()); |
| 63 result->set_capture_time_ms(capture_time_ms()); | 63 result->set_capture_time_ms(capture_time_ms()); |
| 64 *result->mutable_updated_region() = updated_region(); | 64 *result->mutable_updated_region() = updated_region(); |
| 65 return result; | 65 return result; |
| 66 } | 66 } |
| 67 | 67 |
| 68 bool SharedDesktopFrame::IsShared() { | 68 bool SharedDesktopFrame::IsShared() { |
| 69 return !core_->HasOneRef(); | 69 return !core_->HasOneRef(); |
| 70 } | 70 } |
| 71 | 71 |
| 72 SharedDesktopFrame::SharedDesktopFrame(scoped_refptr<Core> core) | 72 SharedDesktopFrame::SharedDesktopFrame(rtc::scoped_refptr<Core> core) |
| 73 : DesktopFrame(core->frame()->size(), core->frame()->stride(), | 73 : DesktopFrame(core->frame()->size(), |
| 74 core->frame()->data(), core->frame()->shared_memory()), | 74 core->frame()->stride(), |
| 75 core->frame()->data(), |
| 76 core->frame()->shared_memory()), |
| 75 core_(core) { | 77 core_(core) { |
| 76 } | 78 } |
| 77 | 79 |
| 78 } // namespace webrtc | 80 } // namespace webrtc |
| OLD | NEW |