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

Side by Side Diff: athena/ui/sample_task.cc

Issue 302683002: athena: Add the concept of Activity and related managers. (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
« athena/task/public/task_manager.h ('K') | « athena/ui/sample_task.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/ui/sample_task.h"
6
7 #include "ui/aura/window.h"
8
9 SampleTask::SampleTask(SkColor color,
10 SkColor content_color,
11 const std::string& title)
12 : color_(color),
13 content_color_(content_color),
14 title_(title) {
15 }
16
17 SampleTask::~SampleTask() {
18 }
19
20 SkColor SampleTask::GetRepresentativeColor() {
21 return color_;
22 }
23
24 std::string SampleTask::GetTitle() {
25 return title_;
26 }
27
28 aura::Window* SampleTask::GetNativeWindow() {
29 if (!window_) {
30 window_.reset(new aura::Window(NULL));
31 window_->Init(aura::WINDOW_LAYER_SOLID_COLOR);
32 window_->layer()->SetColor(content_color_);
33 }
34 return window_.get();
35 }
OLDNEW
« athena/task/public/task_manager.h ('K') | « athena/ui/sample_task.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698