Reland Track the active ExtensionKeybindingRegistry and make it available to EventRew...
[chromium-blink-merge.git] / athena / test / sample_activity_factory.cc
blobd7444ebc40e44fe995ac10e96b4637e7ca6b0351
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.
5 #include "athena/test/sample_activity_factory.h"
7 #include <string>
9 #include "athena/test/sample_activity.h"
10 #include "base/logging.h"
11 #include "base/strings/utf_string_conversions.h"
12 #include "third_party/skia/include/core/SkColor.h"
13 #include "url/gurl.h"
15 namespace athena {
16 namespace test {
18 namespace {
19 const SkColor kDefaultColor = SK_ColorRED;
20 const SkColor kDefaultContentColor = SK_ColorGREEN;
22 const SkColor kDefaultAppColor = SK_ColorYELLOW;
23 const SkColor kDefaultAppContentColor = SK_ColorBLUE;
26 SampleActivityFactory::SampleActivityFactory() {}
28 SampleActivityFactory::~SampleActivityFactory() {}
30 Activity* SampleActivityFactory::CreateWebActivity(
31 content::BrowserContext* browser_context,
32 const base::string16& title,
33 const GURL& url) {
34 return new SampleActivity(
35 kDefaultColor, kDefaultContentColor, base::UTF8ToUTF16(url.spec()));
38 Activity* SampleActivityFactory::CreateAppActivity(
39 extensions::AppWindow* app_window,
40 views::WebView* web_view) {
41 DCHECK(!web_view);
42 return new SampleActivity(
43 kDefaultAppColor, kDefaultAppContentColor, base::UTF8ToUTF16("App"));
46 } // namespace test
47 } // namespace athena