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

Unified Diff: content/child/websocket_dispatcher.cc

Issue 1544273002: Switch to standard integer types in content/. (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 | « content/child/websocket_dispatcher.h ('k') | content/child/webthemeengine_impl_default.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/websocket_dispatcher.cc
diff --git a/content/child/websocket_dispatcher.cc b/content/child/websocket_dispatcher.cc
index c762a4a4f7845053340b37099cdaa533705a3cf9..9fc3370bb65d8bcc1b380761dba11efcf43103f9 100644
--- a/content/child/websocket_dispatcher.cc
+++ b/content/child/websocket_dispatcher.cc
@@ -55,7 +55,7 @@ bool WebSocketDispatcher::OnMessageReceived(const IPC::Message& msg) {
return bridge->OnMessageReceived(msg);
}
-WebSocketBridge* WebSocketDispatcher::GetBridge(int channel_id, uint32 type) {
+WebSocketBridge* WebSocketDispatcher::GetBridge(int channel_id, uint32_t type) {
std::map<int, WebSocketBridge*>::iterator iter = bridges_.find(channel_id);
if (iter == bridges_.end()) {
DVLOG(1) << "No bridge for channel_id=" << channel_id
« no previous file with comments | « content/child/websocket_dispatcher.h ('k') | content/child/webthemeengine_impl_default.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698