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

Unified Diff: chrome/browser/ui/views/auto_keep_alive.cc

Issue 1708343002: Add ScopedKeepAlive to c/b/lifetime (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove KeepAliveOrigin::TEST Created 4 years, 10 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 | « chrome/browser/ui/views/auto_keep_alive.h ('k') | chrome/browser/ui/views/panels/panel_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/auto_keep_alive.cc
diff --git a/chrome/browser/ui/views/auto_keep_alive.cc b/chrome/browser/ui/views/auto_keep_alive.cc
deleted file mode 100644
index c7128e983f42d2d346c655574c26f50c22fbd385..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/views/auto_keep_alive.cc
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright 2014 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.
-
-#include "chrome/browser/ui/views/auto_keep_alive.h"
-
-#include "chrome/browser/lifetime/application_lifetime.h"
-#include "chrome/browser/ui/host_desktop.h"
-
-AutoKeepAlive::AutoKeepAlive(gfx::NativeWindow window)
- : keep_alive_available_(false) {
- // In case of aura we want default to be keep alive not available for ash
- // because ash has keep alive set and we don't want additional keep alive
- // count.
- chrome::HostDesktopType desktop_type =
- window ? chrome::GetHostDesktopTypeForNativeWindow(window)
- : chrome::GetActiveDesktop();
- if (desktop_type != chrome::HOST_DESKTOP_TYPE_ASH) {
- keep_alive_available_ = true;
- chrome::IncrementKeepAliveCount();
- }
-}
-
-AutoKeepAlive::~AutoKeepAlive() {
- if (keep_alive_available_)
- chrome::DecrementKeepAliveCount();
-}
« no previous file with comments | « chrome/browser/ui/views/auto_keep_alive.h ('k') | chrome/browser/ui/views/panels/panel_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698