OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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/media/capture/aura_window_capture_machine.h" | 5 #include "content/browser/media/capture/aura_window_capture_machine.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/metrics/histogram.h" | 11 #include "base/metrics/histogram.h" |
12 #include "cc/output/copy_output_request.h" | 12 #include "cc/output/copy_output_request.h" |
13 #include "cc/output/copy_output_result.h" | 13 #include "cc/output/copy_output_result.h" |
14 #include "components/display_compositor/gl_helper.h" | 14 #include "components/display_compositor/gl_helper.h" |
15 #include "content/browser/compositor/image_transport_factory.h" | 15 #include "content/browser/compositor/image_transport_factory.h" |
16 #include "content/browser/media/capture/desktop_capture_device_uma_types.h" | 16 #include "content/browser/media/capture/desktop_capture_device_uma_types.h" |
17 #include "content/browser/power_save_blocker_factory.h" | |
18 #include "content/public/browser/browser_thread.h" | 17 #include "content/public/browser/browser_thread.h" |
| 18 #include "content/public/browser/power_save_blocker_factory.h" |
19 #include "media/base/video_capture_types.h" | 19 #include "media/base/video_capture_types.h" |
20 #include "media/base/video_util.h" | 20 #include "media/base/video_util.h" |
21 #include "media/capture/content/thread_safe_capture_oracle.h" | 21 #include "media/capture/content/thread_safe_capture_oracle.h" |
22 #include "media/capture/content/video_capture_oracle.h" | 22 #include "media/capture/content/video_capture_oracle.h" |
23 #include "skia/ext/image_operations.h" | 23 #include "skia/ext/image_operations.h" |
24 #include "third_party/skia/include/core/SkBitmap.h" | 24 #include "third_party/skia/include/core/SkBitmap.h" |
25 #include "ui/aura/client/screen_position_client.h" | 25 #include "ui/aura/client/screen_position_client.h" |
26 #include "ui/aura/env.h" | 26 #include "ui/aura/env.h" |
27 #include "ui/aura/window.h" | 27 #include "ui/aura/window.h" |
28 #include "ui/aura/window_observer.h" | 28 #include "ui/aura/window_observer.h" |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 | 80 |
81 // Start observing compositor updates. | 81 // Start observing compositor updates. |
82 aura::WindowTreeHost* const host = desktop_window_->GetHost(); | 82 aura::WindowTreeHost* const host = desktop_window_->GetHost(); |
83 ui::Compositor* const compositor = host ? host->compositor() : nullptr; | 83 ui::Compositor* const compositor = host ? host->compositor() : nullptr; |
84 if (!compositor) | 84 if (!compositor) |
85 return false; | 85 return false; |
86 compositor->AddAnimationObserver(this); | 86 compositor->AddAnimationObserver(this); |
87 | 87 |
88 power_save_blocker_.reset( | 88 power_save_blocker_.reset( |
89 CreatePowerSaveBlocker( | 89 CreatePowerSaveBlocker( |
90 device::PowerSaveBlocker::kPowerSaveBlockPreventDisplaySleep, | 90 PowerSaveBlocker::kPowerSaveBlockPreventDisplaySleep, |
91 device::PowerSaveBlocker::kReasonOther, | 91 PowerSaveBlocker::kReasonOther, "DesktopCaptureDevice is running") |
92 "DesktopCaptureDevice is running") | |
93 .release()); | 92 .release()); |
94 | 93 |
95 return true; | 94 return true; |
96 } | 95 } |
97 | 96 |
98 void AuraWindowCaptureMachine::Stop(const base::Closure& callback) { | 97 void AuraWindowCaptureMachine::Stop(const base::Closure& callback) { |
99 // Stops the capture machine asynchronously. | 98 // Stops the capture machine asynchronously. |
100 BrowserThread::PostTask( | 99 BrowserThread::PostTask( |
101 BrowserThread::UI, FROM_HERE, base::Bind( | 100 BrowserThread::UI, FROM_HERE, base::Bind( |
102 &AuraWindowCaptureMachine::InternalStop, | 101 &AuraWindowCaptureMachine::InternalStop, |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 Capture(timestamp); | 411 Capture(timestamp); |
413 } | 412 } |
414 | 413 |
415 void AuraWindowCaptureMachine::OnCompositingShuttingDown( | 414 void AuraWindowCaptureMachine::OnCompositingShuttingDown( |
416 ui::Compositor* compositor) { | 415 ui::Compositor* compositor) { |
417 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 416 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
418 compositor->RemoveAnimationObserver(this); | 417 compositor->RemoveAnimationObserver(this); |
419 } | 418 } |
420 | 419 |
421 } // namespace content | 420 } // namespace content |
OLD | NEW |