Resolving Compiler Warnings
There were warnings about unused parameters and unnecessary "const" that were hiding other warnings. This change resolves those warnings and resolves some constructor list ordering warnings that were hidden among the other warnings. Bug: 34784667 Change-Id: Ied78b00d3565abd66f90dbd1f4cce635dae7b957
This commit is contained in:
@@ -26,6 +26,7 @@ namespace wvcdm {
|
||||
|
||||
CdmSession::CdmSession(FileSystem* file_system) :
|
||||
initialized_(false),
|
||||
crypto_session_(new CryptoSession(&metrics_)),
|
||||
file_handle_(new DeviceFiles(file_system)),
|
||||
license_received_(false),
|
||||
is_offline_(false),
|
||||
@@ -38,8 +39,7 @@ CdmSession::CdmSession(FileSystem* file_system) :
|
||||
is_initial_usage_update_(true),
|
||||
is_usage_update_needed_(false),
|
||||
mock_license_parser_in_use_(false),
|
||||
mock_policy_engine_in_use_(false),
|
||||
crypto_session_(new CryptoSession(&metrics_)) {
|
||||
mock_policy_engine_in_use_(false) {
|
||||
life_span_.Start();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user