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

Unified Diff: components/tracing/tracing_messages.h

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
Index: components/tracing/tracing_messages.h
diff --git a/components/tracing/tracing_messages.h b/components/tracing/tracing_messages.h
index 26dd9d198740016a1f0380d9dd936c00d950fb9e..47592bebe0372a592acf94720d3d499c32ba50d9 100644
--- a/components/tracing/tracing_messages.h
+++ b/components/tracing/tracing_messages.h
@@ -3,10 +3,12 @@
// found in the LICENSE file.
// Multiply-included message header, no traditional include guard.
+
+#include <stdint.h>
+
#include <string>
#include <vector>
-#include "base/basictypes.h"
#include "base/metrics/histogram.h"
#include "base/sync_socket.h"
#include "base/trace_event/memory_dump_request_args.h"
@@ -47,7 +49,7 @@ IPC_ENUM_TRAITS_MAX_VALUE(
IPC_MESSAGE_CONTROL3(TracingMsg_BeginTracing,
std::string /* trace_config_str */,
base::TimeTicks /* browser_time */,
- uint64 /* Tracing process id (hash of child id) */)
+ uint64_t /* Tracing process id (hash of child id) */)
// Sent to all child processes to disable trace event recording.
IPC_MESSAGE_CONTROL0(TracingMsg_EndTracing)
@@ -84,7 +86,7 @@ IPC_MESSAGE_CONTROL1(TracingMsg_ProcessMemoryDumpRequest,
// Reply to TracingHostMsg_GlobalMemoryDumpRequest, sent by the browser process.
// This is to get the result of a global dump initiated by a child process.
IPC_MESSAGE_CONTROL2(TracingMsg_GlobalMemoryDumpResponse,
- uint64 /* dump_guid */,
+ uint64_t /* dump_guid */,
bool /* success */)
IPC_MESSAGE_CONTROL4(TracingMsg_SetUMACallback,
@@ -129,7 +131,7 @@ IPC_MESSAGE_CONTROL1(TracingHostMsg_GlobalMemoryDumpRequest,
// Reply to TracingMsg_ProcessMemoryDumpRequest.
IPC_MESSAGE_CONTROL2(TracingHostMsg_ProcessMemoryDumpResponse,
- uint64 /* dump_guid */,
+ uint64_t /* dump_guid */,
bool /* success */)
IPC_MESSAGE_CONTROL1(TracingHostMsg_TriggerBackgroundTrace,
« no previous file with comments | « components/tracing/trace_config_file.cc ('k') | components/translate/content/browser/content_translate_driver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698