Index: content/browser/fileapi/file_system_browsertest.cc |
diff --git a/content/browser/fileapi/file_system_browsertest.cc b/content/browser/fileapi/file_system_browsertest.cc |
index 5ff96006abcc5c3ec435589bfc165bfcde7af581..5c60c28f3a8387a7fbca6aa55d8d68df7b54cfb2 100644 |
--- a/content/browser/fileapi/file_system_browsertest.cc |
+++ b/content/browser/fileapi/file_system_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/files/file_path.h" |
@@ -63,7 +65,7 @@ class FileSystemBrowserTestWithLowQuota : public FileSystemBrowserTest { |
shell()->web_contents()->GetBrowserContext())->GetQuotaManager()); |
} |
- static void SetTempQuota(int64 bytes, scoped_refptr<QuotaManager> qm) { |
+ static void SetTempQuota(int64_t bytes, scoped_refptr<QuotaManager> qm) { |
if (!BrowserThread::CurrentlyOn(BrowserThread::IO)) { |
BrowserThread::PostTask( |
BrowserThread::IO, FROM_HERE, |