Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6601)

Unified Diff: chromecast/service/cast_service_android.cc

Issue 638803002: Reorganizes Chromecast code to better reflect functional dependencies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: extra DEPS: chromecast/crash/android --> chromecast/common Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromecast/service/cast_service_android.h ('k') | chromecast/service/cast_service_simple.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/service/cast_service_android.cc
diff --git a/chromecast/service/cast_service_android.cc b/chromecast/service/cast_service_android.cc
deleted file mode 100644
index fc4cc85ff86a60f2e3fa422fc40709ba23a72417..0000000000000000000000000000000000000000
--- a/chromecast/service/cast_service_android.cc
+++ /dev/null
@@ -1,39 +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_android.h"
-
-#include "chromecast/android/chromecast_config_android.h"
-
-namespace chromecast {
-
-// static
-CastService* CastService::Create(
- content::BrowserContext* browser_context,
- net::URLRequestContextGetter* request_context_getter,
- const OptInStatsChangedCallback& opt_in_stats_callback) {
- return new CastServiceAndroid(browser_context, opt_in_stats_callback);
-}
-
-CastServiceAndroid::CastServiceAndroid(
- content::BrowserContext* browser_context,
- const OptInStatsChangedCallback& opt_in_stats_callback)
- : CastService(browser_context, opt_in_stats_callback) {
-}
-
-CastServiceAndroid::~CastServiceAndroid() {
-}
-
-void CastServiceAndroid::Initialize() {
- android::ChromecastConfigAndroid::GetInstance()->
- SetSendUsageStatsChangedCallback(opt_in_stats_callback());
-}
-
-void CastServiceAndroid::StartInternal() {
-}
-
-void CastServiceAndroid::StopInternal() {
-}
-
-} // namespace chromecast
« no previous file with comments | « chromecast/service/cast_service_android.h ('k') | chromecast/service/cast_service_simple.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698