Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / apps / chrome_apps_client.h
blob06273d1a9e7cdf24ae0e98ed6a04cc270566eab4
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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_APPS_CHROME_APPS_CLIENT_H_
6 #define CHROME_BROWSER_APPS_CHROME_APPS_CLIENT_H_
8 #include "apps/apps_client.h"
9 #include "base/basictypes.h"
10 #include "base/compiler_specific.h"
12 template<typename T> struct DefaultSingletonTraits;
14 // The implementation of AppsClient for Chrome.
15 class ChromeAppsClient : public apps::AppsClient {
16 public:
17 ChromeAppsClient();
18 virtual ~ChromeAppsClient();
20 // Get the LazyInstance for ChromeAppsClient.
21 static ChromeAppsClient* GetInstance();
23 private:
24 friend struct DefaultSingletonTraits<ChromeAppsClient>;
26 // apps::AppsClient
27 virtual std::vector<content::BrowserContext*> GetLoadedBrowserContexts()
28 OVERRIDE;
30 // Do any pre app launch checks. Returns true if the app launch should proceed
31 // or false if the launch should be prevented.
32 virtual bool CheckAppLaunch(content::BrowserContext* context,
33 const extensions::Extension* extension) OVERRIDE;
35 DISALLOW_COPY_AND_ASSIGN(ChromeAppsClient);
38 #endif // CHROME_BROWSER_APPS_CHROME_APPS_CLIENT_H_