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.
5 #ifndef ATHENA_CONTENT_SHELL_SHELL_APP_ACTIVITY_H_
6 #define ATHENA_CONTENT_SHELL_SHELL_APP_ACTIVITY_H_
8 #include "athena/content/app_activity.h"
10 #include "base/memory/scoped_ptr.h"
12 namespace extensions
{
18 class ShellAppActivity
: public AppActivity
{
20 ShellAppActivity(extensions::ShellAppWindow
* app_window
,
21 const std::string
& app_id
);
22 virtual ~ShellAppActivity();
26 virtual content::WebContents
* GetWebContents() OVERRIDE
;
28 scoped_ptr
<extensions::ShellAppWindow
> shell_app_window_
;
30 DISALLOW_COPY_AND_ASSIGN(ShellAppActivity
);
35 #endif // ATHENA_CONTENT_SHELL_SHELL_APP_ACTIVITY_H_