summaryrefslogtreecommitdiffstats
path: root/athena/content/shell/shell_app_activity.cc
diff options
context:
space:
mode:
Diffstat (limited to 'athena/content/shell/shell_app_activity.cc')
-rw-r--r--athena/content/shell/shell_app_activity.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/athena/content/shell/shell_app_activity.cc b/athena/content/shell/shell_app_activity.cc
index 77824f2..7e414e7 100644
--- a/athena/content/shell/shell_app_activity.cc
+++ b/athena/content/shell/shell_app_activity.cc
@@ -8,11 +8,13 @@
namespace athena {
-ShellAppActivity::ShellAppActivity(extensions::ShellAppWindow* app_window)
- : shell_app_window_(app_window) {
+ShellAppActivity::ShellAppActivity(extensions::ShellAppWindow* app_window,
+ const std::string& app_id)
+ : AppActivity(app_id), shell_app_window_(app_window) {
}
-ShellAppActivity::~ShellAppActivity() {}
+ShellAppActivity::~ShellAppActivity() {
+}
content::WebContents* ShellAppActivity::GetWebContents() {
return shell_app_window_->GetAssociatedWebContents();