| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 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/wake_lock/wake_lock_service_context.h" | 5 #include "content/browser/wake_lock/wake_lock_service_context.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| 11 #include "content/browser/power_save_blocker_impl.h" | 11 #include "content/browser/power_save_blocker_impl.h" |
| 12 #include "content/public/browser/browser_thread.h" | 12 #include "content/public/browser/browser_thread.h" |
| 13 #include "content/public/browser/power_save_blocker.h" | 13 #include "content/public/browser/power_save_blocker_factory.h" |
| 14 #include "content/public/browser/render_frame_host.h" | 14 #include "content/public/browser/render_frame_host.h" |
| 15 #include "content/public/browser/render_process_host.h" | 15 #include "content/public/browser/render_process_host.h" |
| 16 #include "content/public/common/service_registry.h" | 16 #include "content/public/common/service_registry.h" |
| 17 | 17 |
| 18 namespace content { | 18 namespace content { |
| 19 | 19 |
| 20 WakeLockServiceContext::WakeLockServiceContext(WebContents* web_contents) | 20 WakeLockServiceContext::WakeLockServiceContext(WebContents* web_contents) |
| 21 : WebContentsObserver(web_contents), weak_factory_(this) {} | 21 : WebContentsObserver(web_contents), weak_factory_(this) {} |
| 22 | 22 |
| 23 WakeLockServiceContext::~WakeLockServiceContext() {} | 23 WakeLockServiceContext::~WakeLockServiceContext() {} |
| (...skipping 30 matching lines...) Expand all Loading... |
| 54 std::pair<int, int>(render_process_id, render_frame_id)); | 54 std::pair<int, int>(render_process_id, render_frame_id)); |
| 55 UpdateWakeLock(); | 55 UpdateWakeLock(); |
| 56 } | 56 } |
| 57 | 57 |
| 58 bool WakeLockServiceContext::HasWakeLockForTests() const { | 58 bool WakeLockServiceContext::HasWakeLockForTests() const { |
| 59 return !!wake_lock_; | 59 return !!wake_lock_; |
| 60 } | 60 } |
| 61 | 61 |
| 62 void WakeLockServiceContext::CreateWakeLock() { | 62 void WakeLockServiceContext::CreateWakeLock() { |
| 63 DCHECK(!wake_lock_); | 63 DCHECK(!wake_lock_); |
| 64 wake_lock_ = PowerSaveBlocker::Create( | 64 wake_lock_ = CreatePowerSaveBlocker( |
| 65 PowerSaveBlocker::kPowerSaveBlockPreventDisplaySleep, | 65 PowerSaveBlocker::kPowerSaveBlockPreventDisplaySleep, |
| 66 PowerSaveBlocker::kReasonOther, "Wake Lock API"); | 66 PowerSaveBlocker::kReasonOther, "Wake Lock API"); |
| 67 | 67 |
| 68 #if defined(OS_ANDROID) | 68 #if defined(OS_ANDROID) |
| 69 // On Android, additionaly associate the blocker with this WebContents. | 69 // On Android, additionaly associate the blocker with this WebContents. |
| 70 DCHECK(web_contents()); | 70 DCHECK(web_contents()); |
| 71 | 71 |
| 72 static_cast<PowerSaveBlockerImpl*>(wake_lock_.get()) | 72 static_cast<PowerSaveBlockerImpl*>(wake_lock_.get()) |
| 73 ->InitDisplaySleepBlocker(web_contents()); | 73 ->InitDisplaySleepBlocker(web_contents()); |
| 74 #endif | 74 #endif |
| 75 } | 75 } |
| 76 | 76 |
| 77 void WakeLockServiceContext::RemoveWakeLock() { | 77 void WakeLockServiceContext::RemoveWakeLock() { |
| 78 DCHECK(wake_lock_); | 78 DCHECK(wake_lock_); |
| 79 wake_lock_.reset(); | 79 wake_lock_.reset(); |
| 80 } | 80 } |
| 81 | 81 |
| 82 void WakeLockServiceContext::UpdateWakeLock() { | 82 void WakeLockServiceContext::UpdateWakeLock() { |
| 83 if (!frames_requesting_lock_.empty()) { | 83 if (!frames_requesting_lock_.empty()) { |
| 84 if (!wake_lock_) | 84 if (!wake_lock_) |
| 85 CreateWakeLock(); | 85 CreateWakeLock(); |
| 86 } else { | 86 } else { |
| 87 if (wake_lock_) | 87 if (wake_lock_) |
| 88 RemoveWakeLock(); | 88 RemoveWakeLock(); |
| 89 } | 89 } |
| 90 } | 90 } |
| 91 | 91 |
| 92 } // namespace content | 92 } // namespace content |
| OLD | NEW |