| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef CHROME_BROWSER_APPS_CHROME_APPS_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_APPS_CHROME_APPS_CLIENT_H_ |
| 6 #define CHROME_BROWSER_APPS_CHROME_APPS_CLIENT_H_ | 6 #define CHROME_BROWSER_APPS_CHROME_APPS_CLIENT_H_ |
| 7 | 7 |
| 8 #include "apps/apps_client.h" | 8 #include "apps/apps_client.h" |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 friend struct DefaultSingletonTraits<ChromeAppsClient>; | 24 friend struct DefaultSingletonTraits<ChromeAppsClient>; |
| 25 | 25 |
| 26 // apps::AppsClient | 26 // apps::AppsClient |
| 27 virtual std::vector<content::BrowserContext*> GetLoadedBrowserContexts() | 27 virtual std::vector<content::BrowserContext*> GetLoadedBrowserContexts() |
| 28 OVERRIDE; | 28 OVERRIDE; |
| 29 virtual bool CheckAppLaunch(content::BrowserContext* context, | 29 virtual bool CheckAppLaunch(content::BrowserContext* context, |
| 30 const extensions::Extension* extension) OVERRIDE; | 30 const extensions::Extension* extension) OVERRIDE; |
| 31 virtual apps::AppWindow* CreateAppWindow( | 31 virtual apps::AppWindow* CreateAppWindow( |
| 32 content::BrowserContext* context, | 32 content::BrowserContext* context, |
| 33 const extensions::Extension* extension) OVERRIDE; | 33 const extensions::Extension* extension) OVERRIDE; |
| 34 virtual void StartKeepAlive() OVERRIDE; | 34 virtual void IncrementKeepAliveCount() OVERRIDE; |
| 35 virtual void EndKeepAlive() OVERRIDE; | 35 virtual void DecrementKeepAliveCount() OVERRIDE; |
| 36 | 36 |
| 37 DISALLOW_COPY_AND_ASSIGN(ChromeAppsClient); | 37 DISALLOW_COPY_AND_ASSIGN(ChromeAppsClient); |
| 38 }; | 38 }; |
| 39 | 39 |
| 40 #endif // CHROME_BROWSER_APPS_CHROME_APPS_CLIENT_H_ | 40 #endif // CHROME_BROWSER_APPS_CHROME_APPS_CLIENT_H_ |
| OLD | NEW |