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

Side by Side Diff: apps/shell/browser/shell_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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « apps/shell/browser/shell_apps_client.h ('k') | chrome/browser/app_controller_mac.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "apps/shell/browser/shell_apps_client.h" 5 #include "apps/shell/browser/shell_apps_client.h"
6 6
7 #include "apps/app_window.h" 7 #include "apps/app_window.h"
8 #include "apps/shell/browser/shell_app_window_delegate.h" 8 #include "apps/shell/browser/shell_app_window_delegate.h"
9 9
10 using content::BrowserContext; 10 using content::BrowserContext;
(...skipping 15 matching lines...) Expand all
26 const extensions::Extension* extension) { 26 const extensions::Extension* extension) {
27 return true; 27 return true;
28 } 28 }
29 29
30 AppWindow* ShellAppsClient::CreateAppWindow( 30 AppWindow* ShellAppsClient::CreateAppWindow(
31 BrowserContext* context, 31 BrowserContext* context,
32 const extensions::Extension* extension) { 32 const extensions::Extension* extension) {
33 return new AppWindow(context, new ShellAppWindowDelegate, extension); 33 return new AppWindow(context, new ShellAppWindowDelegate, extension);
34 } 34 }
35 35
36 void ShellAppsClient::StartKeepAlive() {} 36 void ShellAppsClient::IncrementKeepAliveCount() {}
37 37
38 void ShellAppsClient::EndKeepAlive() {} 38 void ShellAppsClient::DecrementKeepAliveCount() {}
39 39
40 } // namespace apps 40 } // namespace apps
OLDNEW
« no previous file with comments | « apps/shell/browser/shell_apps_client.h ('k') | chrome/browser/app_controller_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698