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

Unified Diff: components/mus/ws/window_tree_impl.cc

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn 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/mus/ws/window_tree_impl.h ('k') | components/mus/ws/window_tree_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/ws/window_tree_impl.cc
diff --git a/components/mus/ws/window_tree_impl.cc b/components/mus/ws/window_tree_impl.cc
index 7e17c9a1eec0207e1492fd69c051ae1596e70ada..9f4f9cf8eefe3194ccce2c9f010c0a8036ac25f0 100644
--- a/components/mus/ws/window_tree_impl.cc
+++ b/components/mus/ws/window_tree_impl.cc
@@ -4,7 +4,10 @@
#include "components/mus/ws/window_tree_impl.h"
+#include <stddef.h>
+
#include "base/bind.h"
+#include "base/macros.h"
#include "base/stl_util.h"
#include "components/mus/ws/client_connection.h"
#include "components/mus/ws/connection_manager.h"
@@ -971,7 +974,7 @@ void WindowTreeImpl::GetWindowManagerInternalClient(
->GetWindowManagerInternal();
}
-void WindowTreeImpl::WmResponse(uint32 change_id, bool response) {
+void WindowTreeImpl::WmResponse(uint32_t change_id, bool response) {
if (GetHost() && GetHost()->GetWindowTree() == this)
connection_manager_->WindowManagerChangeCompleted(change_id, response);
}
« no previous file with comments | « components/mus/ws/window_tree_impl.h ('k') | components/mus/ws/window_tree_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698