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

Side by Side Diff: athena/main/sample_activity.cc

Issue 316323002: Introduces ActivityFactory for SampleActivity. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
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 #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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698