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/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 } |
OLD | NEW |