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

Unified Diff: chrome/browser/apps/chrome_apps_client.cc

Issue 176363002: Rename Start/EndKeepAlive to Increment/DecrementKeepAliveCount (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase (rename_keep_alive) Created 6 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/apps/chrome_apps_client.h ('k') | chrome/browser/background/background_mode_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/apps/chrome_apps_client.cc
diff --git a/chrome/browser/apps/chrome_apps_client.cc b/chrome/browser/apps/chrome_apps_client.cc
index 0ce9022e86c661b0c6e0062534d13f0b2369863d..5c931acffcd4e1268424f778b90340fb62fce973 100644
--- a/chrome/browser/apps/chrome_apps_client.cc
+++ b/chrome/browser/apps/chrome_apps_client.cc
@@ -66,14 +66,14 @@ apps::AppWindow* ChromeAppsClient::CreateAppWindow(
#endif
}
-void ChromeAppsClient::StartKeepAlive() {
+void ChromeAppsClient::IncrementKeepAliveCount() {
#if !defined(OS_ANDROID)
- chrome::StartKeepAlive();
+ chrome::IncrementKeepAliveCount();
#endif
}
-void ChromeAppsClient::EndKeepAlive() {
+void ChromeAppsClient::DecrementKeepAliveCount() {
#if !defined(OS_ANDROID)
- chrome::EndKeepAlive();
+ chrome::DecrementKeepAliveCount();
#endif
}
« no previous file with comments | « chrome/browser/apps/chrome_apps_client.h ('k') | chrome/browser/background/background_mode_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698