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

Unified Diff: win8/metro_driver/file_picker.cc

Issue 1540973003: Switch to standard integer types in win8/. (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
« no previous file with comments | « win8/metro_driver/direct3d_helper.h ('k') | win8/metro_driver/file_picker_ash.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: win8/metro_driver/file_picker.cc
diff --git a/win8/metro_driver/file_picker.cc b/win8/metro_driver/file_picker.cc
index b41e6be01d49878748bf767dbe99ff044d81b9ca..708b338c1c57cadeda3c99219f3849596a14dde1 100644
--- a/win8/metro_driver/file_picker.cc
+++ b/win8/metro_driver/file_picker.cc
@@ -5,11 +5,14 @@
#include "stdafx.h"
#include "win8/metro_driver/file_picker.h"
+#include <stddef.h>
+#include <stdint.h>
#include <windows.storage.pickers.h>
#include "base/bind.h"
#include "base/files/file_path.h"
#include "base/logging.h"
+#include "base/macros.h"
#include "base/message_loop/message_loop.h"
#include "base/strings/string_util.h"
#include "base/synchronization/waitable_event.h"
@@ -513,7 +516,7 @@ HRESULT SaveFilePickerSession::StartFilePicker() {
// The save picker requires at least one choice. Callers are strongly advised
// to provide sensible choices. If none were given, fallback to .dat.
- uint32 num_choices = 0;
+ uint32_t num_choices = 0;
hr = choices->get_Size(&num_choices);
if (FAILED(hr))
return hr;
« no previous file with comments | « win8/metro_driver/direct3d_helper.h ('k') | win8/metro_driver/file_picker_ash.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698