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

Unified Diff: components/nacl/browser/nacl_browser.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_service_win.cc ('k') | components/nacl/browser/nacl_browser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/browser/nacl_browser.h
diff --git a/components/nacl/browser/nacl_browser.h b/components/nacl/browser/nacl_browser.h
index ed0f175457ddde82935bb87e6c23c6553f42260c..922d12130a544575e4ef9266f44e8592a007517c 100644
--- a/components/nacl/browser/nacl_browser.h
+++ b/components/nacl/browser/nacl_browser.h
@@ -5,14 +5,18 @@
#ifndef COMPONENTS_NACL_BROWSER_NACL_BROWSER_H_
#define COMPONENTS_NACL_BROWSER_NACL_BROWSER_H_
+#include <stdint.h>
+
#include <deque>
#include "base/bind.h"
#include "base/containers/mru_cache.h"
#include "base/files/file.h"
+#include "base/macros.h"
#include "base/memory/singleton.h"
#include "base/memory/weak_ptr.h"
#include "base/time/time.h"
+#include "build/build_config.h"
#include "components/nacl/browser/nacl_browser_delegate.h"
#include "components/nacl/browser/nacl_validation_cache.h"
@@ -110,9 +114,11 @@ class NaClBrowser {
// per guess.
// TODO(ncbray): move the cache onto NaClProcessHost so that we don't need to
// rely on tokens being unguessable by another process.
- void PutFilePath(const base::FilePath& path, uint64* file_token_lo,
- uint64* file_token_hi);
- bool GetFilePath(uint64 file_token_lo, uint64 file_token_hi,
+ void PutFilePath(const base::FilePath& path,
+ uint64_t* file_token_lo,
+ uint64_t* file_token_hi);
+ bool GetFilePath(uint64_t file_token_lo,
+ uint64_t file_token_hi,
base::FilePath* path);
bool QueryKnownToValidate(const std::string& signature, bool off_the_record);
« no previous file with comments | « components/nacl/browser/nacl_broker_service_win.cc ('k') | components/nacl/browser/nacl_browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698