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

Unified Diff: extensions/browser/app_window/app_window.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/app_window.h
diff --git a/extensions/browser/app_window/app_window.h b/extensions/browser/app_window/app_window.h
index 06540730cc7f7ddb3de1d31a4ec1bf25e04f2b1f..59d84638e93e6b312e5038e866c602d3d4eaa91e 100644
--- a/extensions/browser/app_window/app_window.h
+++ b/extensions/browser/app_window/app_window.h
@@ -5,10 +5,13 @@
#ifndef EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_
#define EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_
+#include <stdint.h>
+
#include <string>
#include <utility>
#include <vector>
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "components/sessions/core/session_id.h"
@@ -58,7 +61,7 @@ class AppWindowContents {
const GURL& url) = 0;
// Called to load the contents, after the app window is created.
- virtual void LoadContents(int32 creator_process_id) = 0;
+ virtual void LoadContents(int32_t creator_process_id) = 0;
// Called when the native window changes.
virtual void NativeWindowChanged(NativeAppWindow* native_app_window) = 0;
@@ -164,7 +167,7 @@ class AppWindow : public content::WebContentsDelegate,
std::string window_key;
// The process ID of the process that requested the create.
- int32 creator_process_id;
+ int32_t creator_process_id;
// Initial state of the window.
ui::WindowShowState state;
« no previous file with comments | « extensions/browser/app_window/app_web_contents_helper.h ('k') | extensions/browser/app_window/app_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698