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

Unified Diff: extensions/browser/app_window/test_app_window_contents.h

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
Patch Set: 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
Index: extensions/browser/app_window/test_app_window_contents.h
diff --git a/extensions/browser/app_window/test_app_window_contents.h b/extensions/browser/app_window/test_app_window_contents.h
index 97635aa176d6c37034f89f7d27b5cdb2260509e4..f93b682b543720d7fbbab72c30bc65503af3fb1d 100644
--- a/extensions/browser/app_window/test_app_window_contents.h
+++ b/extensions/browser/app_window/test_app_window_contents.h
@@ -5,6 +5,8 @@
#ifndef EXTENSIONS_BROWSER_APP_WINDOW_TEST_APP_WINDOW_CONTENTS_
#define EXTENSIONS_BROWSER_APP_WINDOW_TEST_APP_WINDOW_CONTENTS_
+#include <stdint.h>
+
#include "base/macros.h"
#include "extensions/browser/app_window/app_window.h"
@@ -23,7 +25,7 @@ class TestAppWindowContents : public AppWindowContents {
// apps:AppWindowContents:
void Initialize(content::BrowserContext* context, const GURL& url) override;
- void LoadContents(int32 creator_process_id) override;
+ void LoadContents(int32_t creator_process_id) override;
void NativeWindowChanged(NativeAppWindow* native_app_window) override;
void NativeWindowClosed() override;
void DispatchWindowShownForTests() const override;

Powered by Google App Engine
This is Rietveld 408576698