Enable and fix chromium clang warnings in sdk/android targets.

Targets:
base_jni, internal_jni, video_jni, vp8_jni and vp9_jni

Bug: webrtc:163
Change-Id: I4aa68c81e6e7cbe5fdf78c90e464b46c55633252
Reviewed-on: https://webrtc-review.googlesource.com/66820
Commit-Queue: Paulina Hensman <phensman@webrtc.org>
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Reviewed-by: Sami Kalliomäki <sakal@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22744}
This commit is contained in:
Paulina Hensman
2018-04-05 11:42:24 +02:00
committed by Commit Bot
parent 87c5463dfd
commit a680a6a4af
41 changed files with 111 additions and 66 deletions

View File

@ -23,14 +23,14 @@ class VP8Encoder : public VideoEncoder {
public:
static std::unique_ptr<VP8Encoder> Create();
virtual ~VP8Encoder() {}
~VP8Encoder() override {}
}; // end of VP8Encoder class
class VP8Decoder : public VideoDecoder {
public:
static std::unique_ptr<VP8Decoder> Create();
virtual ~VP8Decoder() {}
~VP8Decoder() override {}
}; // end of VP8Decoder class
} // namespace webrtc

View File

@ -23,7 +23,7 @@ class VP9Encoder : public VideoEncoder {
static bool IsSupported();
static std::unique_ptr<VP9Encoder> Create();
virtual ~VP9Encoder() {}
~VP9Encoder() override {}
};
class VP9Decoder : public VideoDecoder {
@ -31,7 +31,7 @@ class VP9Decoder : public VideoDecoder {
static bool IsSupported();
static std::unique_ptr<VP9Decoder> Create();
virtual ~VP9Decoder() {}
~VP9Decoder() override {}
};
} // namespace webrtc