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

Side by Side Diff: athena/content/shell/shell_app_activity.h

Issue 505273002: Move app_shell specific impl from athena_lib to athena_shell_lib (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 ATHENA_CONTENT_SHELL_SHELL_APP_ACTIVITY_H_
6 #define ATHENA_CONTENT_SHELL_SHELL_APP_ACTIVITY_H_
7
8 #include "athena/content/app_activity.h"
9
10 #include "base/memory/scoped_ptr.h"
11
12 namespace extensions {
13 class ShellAppWindow;
14 }
15
16 namespace athena {
17
18 class ShellAppActivity : public AppActivity {
19 public:
20 explicit ShellAppActivity(extensions::ShellAppWindow* app_window);
21 virtual ~ShellAppActivity();
22
23 private:
24 // AppActivity:
25 virtual content::WebContents* GetWebContents() OVERRIDE;
26
27 scoped_ptr<extensions::ShellAppWindow> shell_app_window_;
28
29 DISALLOW_COPY_AND_ASSIGN(ShellAppActivity);
30 };
31
32 } // namespace athena
33
34 #endif // ATHENA_CONTENT_SHELL_SHELL_APP_ACTIVITY_H_
OLDNEW
« no previous file with comments | « athena/content/shell/content_activity_factory.cc ('k') | athena/content/shell/shell_app_activity.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698