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

Unified Diff: content/browser/wake_lock/wake_lock_service_impl.h

Issue 2389743002: Content Modularization Project: Move Wake Lock to //device (Closed)
Patch Set: Eliminate frame reference Created 4 years, 2 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
Index: content/browser/wake_lock/wake_lock_service_impl.h
diff --git a/content/browser/wake_lock/wake_lock_service_impl.h b/content/browser/wake_lock/wake_lock_service_impl.h
deleted file mode 100644
index 495e2c04a4c01ae1148f0ae6ad717852db7c121b..0000000000000000000000000000000000000000
--- a/content/browser/wake_lock/wake_lock_service_impl.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2015 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_BROWSER_WAKE_LOCK_WAKE_LOCK_SERVICE_IMPL_H_
-#define CONTENT_BROWSER_WAKE_LOCK_WAKE_LOCK_SERVICE_IMPL_H_
-
-#include "base/macros.h"
-#include "base/memory/weak_ptr.h"
-#include "mojo/public/cpp/bindings/interface_request.h"
-#include "third_party/WebKit/public/platform/modules/wake_lock/wake_lock_service.mojom.h"
-
-namespace content {
-
-class WakeLockServiceContext;
-
-class WakeLockServiceImpl : public blink::mojom::WakeLockService {
- public:
- explicit WakeLockServiceImpl(base::WeakPtr<WakeLockServiceContext> context);
- ~WakeLockServiceImpl() override;
-
- // WakeLockSevice implementation.
- void RequestWakeLock() override;
- void CancelWakeLock() override;
-
- private:
- base::WeakPtr<WakeLockServiceContext> context_;
- bool wake_lock_request_outstanding_;
-
- DISALLOW_COPY_AND_ASSIGN(WakeLockServiceImpl);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_WAKE_LOCK_WAKE_LOCK_SERVICE_IMPL_H_
« no previous file with comments | « content/browser/wake_lock/wake_lock_service_context_unittest.cc ('k') | content/browser/wake_lock/wake_lock_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698