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

Side by Side Diff: extensions/shell/browser/shell_apps_client.h

Issue 583583008: Rename AppsClient -> AppWindowClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix mac & test Created 6 years, 3 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef EXTENSIONS_SHELL_BROWSER_SHELL_APPS_CLIENT_H_
6 #define EXTENSIONS_SHELL_BROWSER_SHELL_APPS_CLIENT_H_
7
8 #include "base/compiler_specific.h"
9 #include "base/macros.h"
10 #include "extensions/browser/app_window/apps_client.h"
11
12 namespace extensions {
13
14 // app_shell's AppsClient implementation.
15 class ShellAppsClient : public AppsClient {
16 public:
17 ShellAppsClient();
18 virtual ~ShellAppsClient();
19
20 // AppsClient overrides:
21 virtual std::vector<content::BrowserContext*> GetLoadedBrowserContexts()
22 OVERRIDE;
23 virtual AppWindow* CreateAppWindow(content::BrowserContext* context,
24 const Extension* extension) OVERRIDE;
25 virtual NativeAppWindow* CreateNativeAppWindow(
26 AppWindow* window,
27 const AppWindow::CreateParams& params) OVERRIDE;
28 virtual void IncrementKeepAliveCount() OVERRIDE;
29 virtual void DecrementKeepAliveCount() OVERRIDE;
30 virtual void OpenDevToolsWindow(content::WebContents* web_contents,
31 const base::Closure& callback) OVERRIDE;
32 virtual bool IsCurrentChannelOlderThanDev() OVERRIDE;
33
34 private:
35 DISALLOW_COPY_AND_ASSIGN(ShellAppsClient);
36 };
37
38 } // namespace extensions
39
40 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_APPS_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698