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

Unified Diff: content/browser/devtools/devtools_agent_host_impl.h

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
Index: content/browser/devtools/devtools_agent_host_impl.h
diff --git a/content/browser/devtools/devtools_agent_host_impl.h b/content/browser/devtools/devtools_agent_host_impl.h
index 2dc09cc2d38a8a85af341dbcc4771284d18569ba..f3b0624681637473ecd7d8136519c86689bcbd92 100644
--- a/content/browser/devtools/devtools_agent_host_impl.h
+++ b/content/browser/devtools/devtools_agent_host_impl.h
@@ -5,6 +5,8 @@
#ifndef CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_AGENT_HOST_IMPL_H_
#define CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_AGENT_HOST_IMPL_H_
+#include <stdint.h>
+
#include <string>
#include "base/compiler_specific.h"
@@ -87,7 +89,7 @@ class DevToolsMessageChunkProcessor {
private:
SendMessageCallback callback_;
std::string message_buffer_;
- uint32 message_buffer_size_;
+ uint32_t message_buffer_size_;
std::string state_cookie_;
int last_call_id_;
};

Powered by Google App Engine
This is Rietveld 408576698