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

Unified Diff: extensions/browser/content_verify_job.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/content_verify_job.h
diff --git a/extensions/browser/content_verify_job.h b/extensions/browser/content_verify_job.h
index 67b7f0592350f90986e95b56aafbbbf63946edd9..30e46e1d145d20e0bc98a33d7eac4aef7abe7806 100644
--- a/extensions/browser/content_verify_job.h
+++ b/extensions/browser/content_verify_job.h
@@ -5,9 +5,12 @@
#ifndef EXTENSIONS_BROWSER_CONTENT_VERIFY_JOB_H_
#define EXTENSIONS_BROWSER_CONTENT_VERIFY_JOB_H_
+#include <stdint.h>
+
#include <string>
#include "base/callback.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/threading/thread_checker.h"
@@ -120,7 +123,7 @@ class ContentVerifyJob : public base::RefCountedThreadSafe<ContentVerifyJob> {
std::string queue_;
// The total bytes we've read.
- int64 total_bytes_read_;
+ int64_t total_bytes_read_;
// The index of the block we're currently on.
int current_block_;
« no previous file with comments | « extensions/browser/content_verifier_delegate.h ('k') | extensions/browser/declarative_user_script_manager_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698