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

Unified Diff: webrtc/rtc_base/rtccertificategenerator.cc

Issue 2986163002: Audit of kConstants missing the const qualifier (Closed)
Patch Set: rebase + constexpr Created 3 years, 4 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
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.cc ('k') | webrtc/rtc_base/sslroots.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.cc ('k') | webrtc/rtc_base/sslroots.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698