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

Unified Diff: components/nacl/browser/nacl_broker_service_win.h

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn 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
« no previous file with comments | « components/nacl/browser/nacl_broker_host_win.cc ('k') | components/nacl/browser/nacl_broker_service_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/browser/nacl_broker_service_win.h
diff --git a/components/nacl/browser/nacl_broker_service_win.h b/components/nacl/browser/nacl_broker_service_win.h
index a90dabb88d77bc97808db12e0038fff7c8953142..872b9153eb8a7f04e55678c9beece23f27c939fa 100644
--- a/components/nacl/browser/nacl_broker_service_win.h
+++ b/components/nacl/browser/nacl_broker_service_win.h
@@ -5,9 +5,11 @@
#ifndef COMPONENTS_NACL_BROWSER_NACL_BROKER_SERVICE_WIN_H_
#define COMPONENTS_NACL_BROWSER_NACL_BROKER_SERVICE_WIN_H_
+#include <stdint.h>
+
#include <map>
-#include "base/basictypes.h"
+#include "base/macros.h"
#include "base/memory/singleton.h"
#include "base/memory/weak_ptr.h"
#include "components/nacl/browser/nacl_broker_host_win.h"
@@ -37,13 +39,13 @@ class NaClBrokerService {
void OnLoaderDied();
bool LaunchDebugExceptionHandler(base::WeakPtr<NaClProcessHost> client,
- int32 pid,
+ int32_t pid,
base::ProcessHandle process_handle,
const std::string& startup_info);
// Called by NaClBrokerHost to notify the service that a debug
// exception handler was started.
- void OnDebugExceptionHandlerLaunched(int32 pid, bool success);
+ void OnDebugExceptionHandlerLaunched(int32_t pid, bool success);
private:
typedef std::map<std::string, base::WeakPtr<NaClProcessHost> >
« no previous file with comments | « components/nacl/browser/nacl_broker_host_win.cc ('k') | components/nacl/browser/nacl_broker_service_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698