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

Unified Diff: media/cdm/key_system_names.cc

Issue 1921823003: media: Move key_system_names to media/base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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 | « media/cdm/key_system_names.h ('k') | media/media.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cdm/key_system_names.cc
diff --git a/media/cdm/key_system_names.cc b/media/cdm/key_system_names.cc
deleted file mode 100644
index bcddaea2043ba9047bef0d3860eefd6075621ca4..0000000000000000000000000000000000000000
--- a/media/cdm/key_system_names.cc
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright 2013 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 "media/cdm/key_system_names.h"
-
-namespace media {
-
-const char kClearKey[] = "org.w3.clearkey";
-const char kExternalClearKey[] = "org.chromium.externalclearkey";
-
-bool IsClearKey(const std::string& key_system) {
- return key_system == kClearKey;
-}
-
-bool IsChildKeySystemOf(const std::string& key_system,
- const std::string& base) {
- std::string prefix = base + '.';
- return key_system.substr(0, prefix.size()) == prefix;
-}
-
-bool IsExternalClearKey(const std::string& key_system) {
- return key_system == kExternalClearKey ||
- IsChildKeySystemOf(key_system, kExternalClearKey);
-}
-
-} // namespace media
« no previous file with comments | « media/cdm/key_system_names.h ('k') | media/media.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698