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:
Aaron Vaage
2017-01-28 12:16:22 -08:00
parent edb9f00df7
commit 3a5fdd71a0
4 changed files with 13 additions and 13 deletions

View File

@@ -198,6 +198,9 @@ class CryptoSession {
static bool initialized_;
static int session_count_;
metrics::MetricsGroup* metrics_;
metrics::TimerMetric life_span_;
bool open_;
CdmClientTokenType pre_provision_token_type_;
bool update_usage_table_after_close_session_;
@@ -212,9 +215,6 @@ class CryptoSession {
uint64_t request_id_base_;
static uint64_t request_id_index_;
metrics::MetricsGroup* metrics_;
metrics::TimerMetric life_span_;
CdmCipherMode cipher_mode_;
CORE_DISALLOW_COPY_AND_ASSIGN(CryptoSession);