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

Unified Diff: content/public/browser/power_save_blocker.h

Issue 2075973002: Revert of Move content/browser/power_save_blocker to //device/power_save_blocker (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@power-save-next-2
Patch Set: Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/browser/BUILD.gn ('k') | content/public/browser/power_save_blocker_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/power_save_blocker.h
diff --git a/content/public/browser/power_save_blocker.h b/content/public/browser/power_save_blocker.h
new file mode 100644
index 0000000000000000000000000000000000000000..db3c0f25b70c71da8dd7a8866795bbea9da15e82
--- /dev/null
+++ b/content/public/browser/power_save_blocker.h
@@ -0,0 +1,64 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_PUBLIC_BROWSER_POWER_SAVE_BLOCKER_H_
+#define CONTENT_PUBLIC_BROWSER_POWER_SAVE_BLOCKER_H_
+
+#include <memory>
+#include <string>
+
+#include "base/memory/ref_counted.h"
+#include "base/sequenced_task_runner.h"
+#include "base/single_thread_task_runner.h"
+#include "content/common/content_export.h"
+
+namespace content {
+
+// A RAII-style class to block the system from entering low-power (sleep) mode.
+// This class is thread-safe; it may be constructed and deleted on any thread.
+class CONTENT_EXPORT PowerSaveBlocker {
+ public:
+ enum PowerSaveBlockerType {
+ // Prevent the application from being suspended. On some platforms, apps may
+ // be suspended when they are not visible to the user. This type of block
+ // requests that the app continue to run in that case, and on all platforms
+ // prevents the system from sleeping.
+ // Example use cases: downloading a file, playing audio.
+ kPowerSaveBlockPreventAppSuspension,
+
+ // Prevent the display from going to sleep. This also has the side effect of
+ // preventing the system from sleeping, but does not necessarily prevent the
+ // app from being suspended on some platforms if the user hides it.
+ // Example use case: playing video.
+ kPowerSaveBlockPreventDisplaySleep,
+ };
+
+ // Reasons why power-saving features may be blocked.
+ enum Reason {
+ // Audio is being played.
+ kReasonAudioPlayback,
+ // Video is being played.
+ kReasonVideoPlayback,
+ // Power-saving is blocked for some other reason.
+ kReasonOther,
+ };
+
+ virtual ~PowerSaveBlocker() = 0;
+
+ // Pass in the type of power save blocking desired. If multiple types of
+ // blocking are desired, instantiate one PowerSaveBlocker for each type.
+ // |reason| and |description| (a more-verbose, human-readable justification of
+ // the blocking) may be provided to the underlying system APIs on some
+ // platforms.
+ static std::unique_ptr<PowerSaveBlocker> CreateWithTaskRunners(
+ PowerSaveBlockerType type,
+ Reason reason,
+ const std::string& description,
+ scoped_refptr<base::SequencedTaskRunner> ui_task_runner,
+ scoped_refptr<base::SingleThreadTaskRunner> file_task_runner);
+};
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_POWER_SAVE_BLOCKER_H_
« no previous file with comments | « content/public/browser/BUILD.gn ('k') | content/public/browser/power_save_blocker_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698