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

Unified Diff: chrome/browser/media/wv_test_license_server_config.h

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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: chrome/browser/media/wv_test_license_server_config.h
diff --git a/chrome/browser/media/wv_test_license_server_config.h b/chrome/browser/media/wv_test_license_server_config.h
index f7901bd34d367c3af33c52324e3d151a92d798d2..7b36e43ff10ee71af08dbd4d75115504995ea382 100644
--- a/chrome/browser/media/wv_test_license_server_config.h
+++ b/chrome/browser/media/wv_test_license_server_config.h
@@ -5,6 +5,9 @@
#ifndef CHROME_BROWSER_MEDIA_WV_TEST_LICENSE_SERVER_CONFIG_H_
#define CHROME_BROWSER_MEDIA_WV_TEST_LICENSE_SERVER_CONFIG_H_
+#include <stdint.h>
+
+#include "base/macros.h"
#include "chrome/browser/media/test_license_server_config.h"
// License configuration to run the Widevine test license server.
@@ -21,7 +24,7 @@ class WVTestLicenseServerConfig : public TestLicenseServerConfig {
private:
// Server port. The port value should be set by calling SelectServerPort().
- uint16 port_;
+ uint16_t port_;
// Retrieves the path for the WV license server root:
// third_party/widevine/test/license_server/
« no previous file with comments | « chrome/browser/media/webrtc_rtp_dump_writer_unittest.cc ('k') | chrome/browser/media/wv_test_license_server_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698