blob: 2f8e6fe73f70bb05d006489083c72f93df778046 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ATHENA_TEST_BASE_SAMPLE_ACTIVITY_FACTORY_H_
#define ATHENA_TEST_BASE_SAMPLE_ACTIVITY_FACTORY_H_
#include "athena/activity/public/activity_factory.h"
#include "base/macros.h"
namespace athena {
namespace test {
class SampleActivityFactory : public ActivityFactory {
public:
SampleActivityFactory();
~SampleActivityFactory() override;
// Overridden from ActivityFactory:
Activity* CreateWebActivity(content::BrowserContext* browser_context,
const base::string16& title,
const GURL& url) override;
Activity* CreateWebActivity(content::WebContents* contents) override;
Activity* CreateAppActivity(const std::string& app_id,
views::WebView* web_view) override;
private:
DISALLOW_COPY_AND_ASSIGN(SampleActivityFactory);
};
} // namespace test
} // namespace athena
#endif // ATHENA_TEST_BASE_SAMPLE_ACTIVITY_FACTORY_H_