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

Unified Diff: webrtc/rtc_base/rtccertificategenerator.cc

Issue 2986163002: Audit of kConstants missing the const qualifier (Closed)
Patch Set: Created 3 years, 5 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
Index: webrtc/rtc_base/rtccertificategenerator.cc
diff --git a/webrtc/rtc_base/rtccertificategenerator.cc b/webrtc/rtc_base/rtccertificategenerator.cc
index 74e9336144e6f486ed2d1c697f40e95217de2348..037babdd1a7a626c8bd28b78287881fcd34f674b 100644
--- a/webrtc/rtc_base/rtccertificategenerator.cc
+++ b/webrtc/rtc_base/rtccertificategenerator.cc
@@ -23,7 +23,7 @@ namespace {
// A certificates' subject and issuer name.
const char kIdentityName[] = "WebRTC";
-uint64_t kYearInSeconds = 365 * 24 * 60 * 60;
+const uint64_t kYearInSeconds = 365 * 24 * 60 * 60;
enum {
MSG_GENERATE,

Powered by Google App Engine
This is Rietveld 408576698