| Index: athena/content/web_activity.h
|
| diff --git a/athena/content/web_activity.h b/athena/content/web_activity.h
|
| index e421f6f621e66dc186e5e19f192cebd27dd0dfae..33bf85735697f2f1e86f32e8934fe5b0c2e5b4ed 100644
|
| --- a/athena/content/web_activity.h
|
| +++ b/athena/content/web_activity.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include "athena/activity/public/activity.h"
|
| #include "athena/activity/public/activity_view_model.h"
|
| +#include "base/strings/string16.h"
|
| #include "content/public/browser/web_contents_observer.h"
|
| #include "ui/gfx/image/image_skia.h"
|
|
|
| @@ -28,7 +29,9 @@ class WebActivity : public Activity,
|
| public ActivityViewModel,
|
| public content::WebContentsObserver {
|
| public:
|
| - WebActivity(content::BrowserContext* context, const GURL& gurl);
|
| + WebActivity(content::BrowserContext* context,
|
| + const base::string16& title,
|
| + const GURL& gurl);
|
| WebActivity(AthenaWebView* web_view);
|
| virtual ~WebActivity();
|
|
|
| @@ -59,6 +62,7 @@ class WebActivity : public Activity,
|
|
|
| private:
|
| content::BrowserContext* browser_context_;
|
| + const base::string16 title_;
|
| const GURL url_;
|
| AthenaWebView* web_view_;
|
| SkColor title_color_;
|
|
|