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

Unified Diff: content/browser/tracing/trace_message_filter.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
« no previous file with comments | « content/browser/tracing/power_tracing_agent.h ('k') | content/browser/tracing/trace_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/tracing/trace_message_filter.h
diff --git a/content/browser/tracing/trace_message_filter.h b/content/browser/tracing/trace_message_filter.h
index 63a5129bfc2c6c067a68413686acfcd4261202c6..22d91d914ad35c83909efe5e9ebd17067ceae8f1 100644
--- a/content/browser/tracing/trace_message_filter.h
+++ b/content/browser/tracing/trace_message_filter.h
@@ -5,9 +5,12 @@
#ifndef CONTENT_BROWSER_TRACING_TRACE_MESSAGE_FILTER_H_
#define CONTENT_BROWSER_TRACING_TRACE_MESSAGE_FILTER_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
+#include "base/macros.h"
#include "base/trace_event/memory_dump_request_args.h"
#include "base/trace_event/trace_event.h"
#include "content/public/browser/browser_message_filter.h"
@@ -54,9 +57,9 @@ class TraceMessageFilter : public BrowserMessageFilter {
void OnMonitoringTraceDataCollected(const std::string& data);
void OnGlobalMemoryDumpRequest(
const base::trace_event::MemoryDumpRequestArgs& args);
- void OnProcessMemoryDumpResponse(uint64 dump_guid, bool success);
+ void OnProcessMemoryDumpResponse(uint64_t dump_guid, bool success);
- void SendGlobalMemoryDumpResponse(uint64 dump_guid, bool success);
+ void SendGlobalMemoryDumpResponse(uint64_t dump_guid, bool success);
void OnTriggerBackgroundTrace(const std::string& histogram_name);
void OnAbortBackgroundTrace();
@@ -64,7 +67,7 @@ class TraceMessageFilter : public BrowserMessageFilter {
bool has_child_;
// Hash of id of the child process.
- uint64 tracing_process_id_;
+ uint64_t tracing_process_id_;
// Awaiting ack for previously sent SendEndTracing
bool is_awaiting_end_ack_;
« no previous file with comments | « content/browser/tracing/power_tracing_agent.h ('k') | content/browser/tracing/trace_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698