OLD | NEW |
| (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 #include "athena/main/sample_activity.h" | |
6 | |
7 #include "ui/aura/window.h" | |
8 | |
9 SampleActivity::SampleActivity(SkColor color, | |
10 SkColor content_color, | |
11 const std::string& title) | |
12 : color_(color), content_color_(content_color), title_(title) { | |
13 } | |
14 | |
15 SampleActivity::~SampleActivity() { | |
16 } | |
17 | |
18 athena::ActivityViewModel* SampleActivity::GetActivityViewModel() { | |
19 return this; | |
20 } | |
21 | |
22 SkColor SampleActivity::GetRepresentativeColor() { | |
23 return color_; | |
24 } | |
25 | |
26 std::string SampleActivity::GetTitle() { | |
27 return title_; | |
28 } | |
29 | |
30 aura::Window* SampleActivity::GetNativeWindow() { | |
31 if (!window_) { | |
32 window_.reset(new aura::Window(NULL)); | |
33 window_->Init(aura::WINDOW_LAYER_SOLID_COLOR); | |
34 window_->layer()->SetColor(content_color_); | |
35 } | |
36 return window_.get(); | |
37 } | |
OLD | NEW |