Index: content/browser/manifest/manifest_browsertest.cc |
diff --git a/content/browser/manifest/manifest_browsertest.cc b/content/browser/manifest/manifest_browsertest.cc |
index 92ee4e53cc76066c7461727b56e8151be57506ad..f340f1756c13abd2effd9cc44fcb8266bb613289 100644 |
--- a/content/browser/manifest/manifest_browsertest.cc |
+++ b/content/browser/manifest/manifest_browsertest.cc |
@@ -2,7 +2,10 @@ |
// 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/command_line.h" |
+#include "base/macros.h" |
#include "base/path_service.h" |
#include "base/strings/string_util.h" |
#include "base/strings/stringprintf.h" |
@@ -32,9 +35,9 @@ class MockWebContentsDelegate : public WebContentsDelegate { |
} |
bool AddMessageToConsole(WebContents* source, |
- int32 level, |
+ int32_t level, |
const base::string16& message, |
- int32 line_no, |
+ int32_t line_no, |
const base::string16& source_id) override; |
private: |
@@ -126,9 +129,9 @@ class ManifestBrowserTest : public ContentBrowserTest { |
// to know about |test_|. |
bool MockWebContentsDelegate::AddMessageToConsole( |
WebContents* source, |
- int32 level, |
+ int32_t level, |
const base::string16& message, |
- int32 line_no, |
+ int32_t line_no, |
const base::string16& source_id) { |
DCHECK(source == web_contents_); |