Home | History | Annotate | Download | only in main
      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/placeholder.h"
      6 
      7 #include "athena/activity/public/activity_factory.h"
      8 #include "athena/activity/public/activity_manager.h"
      9 #include "athena/screen/public/screen_manager.h"
     10 #include "base/memory/scoped_ptr.h"
     11 #include "third_party/skia/include/core/SkColor.h"
     12 #include "ui/gfx/canvas.h"
     13 #include "ui/gfx/image/image_skia.h"
     14 #include "ui/views/painter.h"
     15 
     16 void CreateTestPages(content::BrowserContext* browser_context) {
     17   const char* kTestURLs[] = {
     18       "http://cyan.bikeshed.com", "https://news.google.com",
     19       "http://blue.bikeshed.com", "https://www.google.com",
     20   };
     21   for (size_t i = 0; i < arraysize(kTestURLs); ++i) {
     22     athena::ActivityManager::Get()->AddActivity(
     23         athena::ActivityFactory::Get()->CreateWebActivity(browser_context,
     24                                                           GURL(kTestURLs[i])));
     25   }
     26 }
     27 
     28 void SetupBackgroundImage() {
     29   gfx::Size size(200, 200);
     30   gfx::Canvas canvas(size, 1.0f, true);
     31   scoped_ptr<views::Painter> painter(
     32       views::Painter::CreateVerticalGradient(SK_ColorBLUE, SK_ColorCYAN));
     33   painter->Paint(&canvas, size);
     34   athena::ScreenManager::Get()->SetBackgroundImage(
     35       gfx::ImageSkia(canvas.ExtractImageRep()));
     36 }
     37