blob: 56144b722aac9fddaea14cce2101ef43e7044098 [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.
#include "chromecast/browser/service/cast_service_simple.h"
#include <string>
#include "base/command_line.h"
#include "base/files/file_util.h"
#include "base/memory/ptr_util.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/content_switches.h"
#include "net/base/filename_util.h"
namespace chromecast {
namespace shell {
namespace {
GURL GetStartupURL() {
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
const base::CommandLine::StringVector& args = command_line->GetArgs();
if (args.empty())
return GURL("http://www.google.com/");
GURL url(args[0]);
if (url.is_valid() && url.has_scheme())
return url;
return net::FilePathToFileURL(
base::MakeAbsoluteFilePath(base::FilePath(args[0])));
}
} // namespace
CastServiceSimple::CastServiceSimple(content::BrowserContext* browser_context,
PrefService* pref_service,
CastWindowManager* window_manager)
: CastService(browser_context, pref_service),
window_manager_(window_manager) {
DCHECK(window_manager_);
}
CastServiceSimple::~CastServiceSimple() {
}
void CastServiceSimple::InitializeInternal() {
startup_url_ = GetStartupURL();
}
void CastServiceSimple::FinalizeInternal() {
}
void CastServiceSimple::StartInternal() {
if (base::CommandLine::ForCurrentProcess()->HasSwitch(switches::kTestType)) {
return;
}
cast_web_view_ = base::MakeUnique<CastWebView>(this, browser_context(),
/*site_instance*/ nullptr,
/*transparent*/ false);
cast_web_view_->LoadUrl(startup_url_);
cast_web_view_->Show(window_manager_);
}
void CastServiceSimple::StopInternal() {
if (cast_web_view_) {
cast_web_view_->ClosePage();
}
cast_web_view_.reset();
}
void CastServiceSimple::OnPageStopped(int error_code) {}
void CastServiceSimple::OnLoadingStateChanged(bool loading) {}
void CastServiceSimple::OnWindowDestroyed() {}
void CastServiceSimple::OnKeyEvent(const ui::KeyEvent& key_event) {}
} // namespace shell
} // namespace chromecast