summaryrefslogtreecommitdiffstats
path: root/chromecast/renderer/key_systems_cast_simple.cc
diff options
context:
space:
mode:
authorgunsch <gunsch@chromium.org>2014-10-13 16:01:45 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-13 23:02:02 +0000
commitf44ffcbebf37154f23917d058c1bb6fa295887e3 (patch)
tree02f617a75006bd4d6035966e7b79c9b7701e4a85 /chromecast/renderer/key_systems_cast_simple.cc
parentef97146f36e0e31632be0f7defebf2da4d72d360 (diff)
downloadchromium_src-f44ffcbebf37154f23917d058c1bb6fa295887e3.zip
chromium_src-f44ffcbebf37154f23917d058c1bb6fa295887e3.tar.gz
chromium_src-f44ffcbebf37154f23917d058c1bb6fa295887e3.tar.bz2
Reorganizes Chromecast code to better reflect functional dependencies.
Motivation: * chromecast/service/ directory had interplay with chromecast/shell/browser code, since the service is all run in the browser process and mildly coupled (involves starting WebContents instances, etc,). Made more sense for chromecast/service to live in chromecast/shell/browser. * chromecast/shell/ directory is needless hierarchy, since the entire chromecast/ directory represents the Chromecast content-embedder. Highlights: * chromecast/shell/{app,browser,common,renderer} --> chromecast/* * chromecast/shell/browser/resources --> chromecast/app/resources * chromecast/shell/settings --> chromecast/app/resources * chromecast/shell/android --> chromecast/browser/android * chromecast/metrics --> chromecast/browser/metrics * chromecast/service --> chromecast/browser/service R=lcwu@chromium.org,gusfernandez@chromium.org,byungchul@chromium.org TBR=xhwang@chromium.org,asvitkine@chromium.org,thestig@chromium.org,jam@chromium.org,yfriedman@chromium.org BUG=None Review URL: https://codereview.chromium.org/638803002 Cr-Commit-Position: refs/heads/master@{#299385}
Diffstat (limited to 'chromecast/renderer/key_systems_cast_simple.cc')
-rw-r--r--chromecast/renderer/key_systems_cast_simple.cc16
1 files changed, 16 insertions, 0 deletions
diff --git a/chromecast/renderer/key_systems_cast_simple.cc b/chromecast/renderer/key_systems_cast_simple.cc
new file mode 100644
index 0000000..395c2b7
--- /dev/null
+++ b/chromecast/renderer/key_systems_cast_simple.cc
@@ -0,0 +1,16 @@
+// 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/renderer/key_systems_cast.h"
+
+namespace chromecast {
+namespace shell {
+
+void AddChromecastPlatformKeySystems(
+ std::vector<content::KeySystemInfo>* key_systems_info) {
+ // Intentional no-op for public build.
+}
+
+} // namespace shell
+} // namespace chromecast