Index: content/browser/tracing/memory_tracing_browsertest.cc |
diff --git a/content/browser/tracing/memory_tracing_browsertest.cc b/content/browser/tracing/memory_tracing_browsertest.cc |
index a268610076f06bb50a7dc25d49765d711dfec47b..13b09231230a07df3d8c99a96c0238828c2a724a 100644 |
--- a/content/browser/tracing/memory_tracing_browsertest.cc |
+++ b/content/browser/tracing/memory_tracing_browsertest.cc |
@@ -2,6 +2,8 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+#include <stdint.h> |
+ |
#include "base/bind.h" |
#include "base/command_line.h" |
#include "base/run_loop.h" |
@@ -47,7 +49,7 @@ class MemoryTracingTest : public ContentBrowserTest { |
void OnGlobalMemoryDumpDone( |
scoped_refptr<base::SingleThreadTaskRunner> task_runner, |
base::Closure closure, |
- uint64 dump_guid, |
+ uint64_t dump_guid, |
bool success) { |
// Make sure we run the RunLoop closure on the same thread that originated |
// the run loop (which is the IN_PROC_BROWSER_TEST_F main thread). |
@@ -125,8 +127,8 @@ class MemoryTracingTest : public ContentBrowserTest { |
base::Closure on_memory_dump_complete_closure_; |
scoped_ptr<MockDumpProvider> mock_dump_provider_; |
- uint32 callback_call_count_; |
- uint64 last_callback_dump_guid_; |
+ uint32_t callback_call_count_; |
+ uint64_t last_callback_dump_guid_; |
bool last_callback_success_; |
}; |