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

Unified Diff: content/browser/power_save_blocker_android.cc

Issue 11784016: chromeos: Block system suspend while uploading files to Drive (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 11 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/browser/power_save_blocker.h ('k') | content/browser/power_save_blocker_chromeos.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/power_save_blocker_android.cc
diff --git a/content/browser/power_save_blocker_android.cc b/content/browser/power_save_blocker_android.cc
index 2de5ef0b6a07d0f1e1a0d80747fff00e5b0513e4..c349fe5f9e174bdeb14ceddfe97943b549b79e2b 100644
--- a/content/browser/power_save_blocker_android.cc
+++ b/content/browser/power_save_blocker_android.cc
@@ -2,27 +2,27 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/browser/power_save_blocker.h"
+#include "content/browser/power_save_blocker_impl.h"
#include "base/logging.h"
namespace content {
-class PowerSaveBlocker::Delegate
- : public base::RefCounted<PowerSaveBlocker::Delegate> {
+class PowerSaveBlockerImpl::Delegate
+ : public base::RefCounted<PowerSaveBlockerImpl::Delegate> {
private:
friend class base::RefCounted<Delegate>;
~Delegate() {}
};
-PowerSaveBlocker::PowerSaveBlocker(PowerSaveBlockerType type,
- const std::string& reason) {
+PowerSaveBlockerImpl::PowerSaveBlockerImpl(PowerSaveBlockerType type,
+ const std::string& reason) {
// TODO(wangxianzhu): Implement it.
// This may be called on any thread.
NOTIMPLEMENTED();
}
-PowerSaveBlocker::~PowerSaveBlocker() {
+PowerSaveBlockerImpl::~PowerSaveBlockerImpl() {
}
} // namespace content
« no previous file with comments | « content/browser/power_save_blocker.h ('k') | content/browser/power_save_blocker_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698