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

Unified Diff: components/web_view/public/cpp/web_view.cc

Issue 1549993003: Switch to standard integer types in components/, part 4 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
« no previous file with comments | « components/web_view/pending_web_view_load.h ('k') | components/web_view/test_frame_tree_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/web_view/public/cpp/web_view.cc
diff --git a/components/web_view/public/cpp/web_view.cc b/components/web_view/public/cpp/web_view.cc
index 0aee7653a55c0921fb5a45ec0c3be4ac00810fb1..e8f581d9799ec29cf95529d3b0dcfd86d230e587 100644
--- a/components/web_view/public/cpp/web_view.cc
+++ b/components/web_view/public/cpp/web_view.cc
@@ -4,6 +4,8 @@
#include "components/web_view/public/cpp/web_view.h"
+#include <stdint.h>
+
#include "base/bind.h"
#include "components/mus/public/cpp/window.h"
#include "mojo/application/public/cpp/application_impl.h"
@@ -11,7 +13,7 @@
namespace web_view {
namespace {
-void OnEmbed(bool success, uint16 connection_id) {
+void OnEmbed(bool success, uint16_t connection_id) {
CHECK(success);
}
« no previous file with comments | « components/web_view/pending_web_view_load.h ('k') | components/web_view/test_frame_tree_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698