| Index: chromecast/service/cast_service.cc
|
| diff --git a/chromecast/service/cast_service.cc b/chromecast/service/cast_service.cc
|
| deleted file mode 100644
|
| index 0490b0f50745c5edaf083634bdd03015316b2184..0000000000000000000000000000000000000000
|
| --- a/chromecast/service/cast_service.cc
|
| +++ /dev/null
|
| @@ -1,40 +0,0 @@
|
| -// 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/service/cast_service.h"
|
| -
|
| -#include "base/logging.h"
|
| -#include "base/threading/thread_checker.h"
|
| -
|
| -namespace chromecast {
|
| -
|
| -CastService::CastService(
|
| - content::BrowserContext* browser_context,
|
| - const OptInStatsChangedCallback& opt_in_stats_callback)
|
| - : browser_context_(browser_context),
|
| - opt_in_stats_callback_(opt_in_stats_callback),
|
| - stopped_(true),
|
| - thread_checker_(new base::ThreadChecker()) {
|
| -}
|
| -
|
| -CastService::~CastService() {
|
| - DCHECK(thread_checker_->CalledOnValidThread());
|
| - DCHECK(stopped_);
|
| -}
|
| -
|
| -void CastService::Start() {
|
| - DCHECK(thread_checker_->CalledOnValidThread());
|
| -
|
| - Initialize();
|
| - stopped_ = false;
|
| - StartInternal();
|
| -}
|
| -
|
| -void CastService::Stop() {
|
| - DCHECK(thread_checker_->CalledOnValidThread());
|
| - StopInternal();
|
| - stopped_ = true;
|
| -}
|
| -
|
| -} // namespace chromecast
|
|
|