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

Unified Diff: gpu/config/gpu_info.cc

Issue 1542513002: Switch to standard integer types in gpu/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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
« no previous file with comments | « gpu/config/gpu_info.h ('k') | gpu/config/gpu_info_collector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/config/gpu_info.cc
diff --git a/gpu/config/gpu_info.cc b/gpu/config/gpu_info.cc
index 3a753e5260045cd0482ff6e5837571cc03f449c9..e9f354b90db660517ab9141549686181d7e20be3 100644
--- a/gpu/config/gpu_info.cc
+++ b/gpu/config/gpu_info.cc
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include <stdint.h>
+
#include "gpu/config/gpu_info.h"
namespace {
@@ -90,7 +92,7 @@ void GPUInfo::EnumerateFields(Enumerator* enumerator) const {
Version display_link_version;
GPUDevice gpu;
std::vector<GPUDevice> secondary_gpus;
- uint64 adapter_luid;
+ uint64_t adapter_luid;
std::string driver_vendor;
std::string driver_version;
std::string driver_date;
@@ -106,7 +108,7 @@ void GPUInfo::EnumerateFields(Enumerator* enumerator) const {
std::string gl_ws_vendor;
std::string gl_ws_version;
std::string gl_ws_extensions;
- uint32 gl_reset_notification_strategy;
+ uint32_t gl_reset_notification_strategy;
bool can_lose_context;
bool software_rendering;
bool direct_rendering;
« no previous file with comments | « gpu/config/gpu_info.h ('k') | gpu/config/gpu_info_collector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698