20 lines
		
	
	
	
		
			611 B
			
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			611 B
			
		
	
	
	
		
			C++
		
	
	
	
	
	
// 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.
 | 
						|
 | 
						|
#ifndef CHROME_RENDERER_MEDIA_CHROME_KEY_SYSTEMS_H_
 | 
						|
#define CHROME_RENDERER_MEDIA_CHROME_KEY_SYSTEMS_H_
 | 
						|
 | 
						|
#include <memory>
 | 
						|
#include <vector>
 | 
						|
 | 
						|
namespace media {
 | 
						|
class KeySystemProperties;
 | 
						|
}
 | 
						|
 | 
						|
// Register the key systems supported by populating |key_systems_properties|.
 | 
						|
void AddChromeKeySystems(
 | 
						|
    std::vector<std::unique_ptr<media::KeySystemProperties>>*
 | 
						|
        key_systems_properties);
 | 
						|
 | 
						|
#endif  // CHROME_RENDERER_MEDIA_CHROME_KEY_SYSTEMS_H_
 |