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

Unified Diff: mojo/services/tracing/tracing_app.h

Issue 1543603002: Switch to standard integer types in mojo/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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 | « mojo/services/tracing/trace_data_sink.h ('k') | mojo/services/tracing/tracing_app.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/tracing/tracing_app.h
diff --git a/mojo/services/tracing/tracing_app.h b/mojo/services/tracing/tracing_app.h
index ccf7a3524721f239c18af3c8f3862e84bd455f5b..a1e07497c3571a88d9b256ff6a83f0f8f9225a56 100644
--- a/mojo/services/tracing/tracing_app.h
+++ b/mojo/services/tracing/tracing_app.h
@@ -5,6 +5,8 @@
#ifndef MOJO_SERVICES_TRACING_TRACING_APP_H_
#define MOJO_SERVICES_TRACING_TRACING_APP_H_
+#include <stdint.h>
+
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/scoped_vector.h"
@@ -49,13 +51,13 @@ class TracingApp
void StopAndFlush() override;
// StartupPerformanceDataCollector implementation.
- void SetShellProcessCreationTime(int64 time) override;
- void SetShellMainEntryPointTime(int64 time) override;
- void SetBrowserMessageLoopStartTicks(int64 ticks) override;
- void SetBrowserWindowDisplayTicks(int64 ticks) override;
- void SetBrowserOpenTabsTimeDelta(int64 delta) override;
- void SetFirstWebContentsMainFrameLoadTicks(int64 ticks) override;
- void SetFirstVisuallyNonEmptyLayoutTicks(int64 ticks) override;
+ void SetShellProcessCreationTime(int64_t time) override;
+ void SetShellMainEntryPointTime(int64_t time) override;
+ void SetBrowserMessageLoopStartTicks(int64_t ticks) override;
+ void SetBrowserWindowDisplayTicks(int64_t ticks) override;
+ void SetBrowserOpenTabsTimeDelta(int64_t delta) override;
+ void SetFirstWebContentsMainFrameLoadTicks(int64_t ticks) override;
+ void SetFirstVisuallyNonEmptyLayoutTicks(int64_t ticks) override;
void GetStartupPerformanceTimes(
const GetStartupPerformanceTimesCallback& callback) override;
« no previous file with comments | « mojo/services/tracing/trace_data_sink.h ('k') | mojo/services/tracing/tracing_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698