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

Side by Side Diff: content/browser/loader/power_save_block_resource_throttle.cc

Issue 2012853003: Reland of Pass SequencedTaskRunner to PowerSaveBlocker for ui/file ops (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: SingleThreadTaskRunner for _x11 Created 4 years, 7 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
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/loader/power_save_block_resource_throttle.h" 5 #include "content/browser/loader/power_save_block_resource_throttle.h"
6 6
7 #include "content/public/browser/power_save_blocker.h" 7 #include "content/public/browser/power_save_blocker_factory.h"
8 8
9 namespace content { 9 namespace content {
10 10
11 namespace { 11 namespace {
12 12
13 const int kPowerSaveBlockDelaySeconds = 30; 13 const int kPowerSaveBlockDelaySeconds = 30;
14 14
15 } // namespace 15 } // namespace
16 16
17 PowerSaveBlockResourceThrottle::PowerSaveBlockResourceThrottle( 17 PowerSaveBlockResourceThrottle::PowerSaveBlockResourceThrottle(
(...skipping 15 matching lines...) Expand all
33 // Stop blocking power save after request finishes. 33 // Stop blocking power save after request finishes.
34 power_save_blocker_.reset(); 34 power_save_blocker_.reset();
35 timer_.Stop(); 35 timer_.Stop();
36 } 36 }
37 37
38 const char* PowerSaveBlockResourceThrottle::GetNameForLogging() const { 38 const char* PowerSaveBlockResourceThrottle::GetNameForLogging() const {
39 return "PowerSaveBlockResourceThrottle"; 39 return "PowerSaveBlockResourceThrottle";
40 } 40 }
41 41
42 void PowerSaveBlockResourceThrottle::ActivatePowerSaveBlocker() { 42 void PowerSaveBlockResourceThrottle::ActivatePowerSaveBlocker() {
43 power_save_blocker_ = PowerSaveBlocker::Create( 43 power_save_blocker_ = CreatePowerSaveBlocker(
44 PowerSaveBlocker::kPowerSaveBlockPreventAppSuspension, 44 PowerSaveBlocker::kPowerSaveBlockPreventAppSuspension,
45 PowerSaveBlocker::kReasonOther, "Uploading data to " + host_); 45 PowerSaveBlocker::kReasonOther, "Uploading data to " + host_);
46 } 46 }
47 47
48 } // namespace content 48 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/loader/DEPS ('k') | content/browser/media/capture/aura_window_capture_machine.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698