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

Unified Diff: extensions/browser/content_verifier_delegate.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
« no previous file with comments | « extensions/browser/content_hash_reader.h ('k') | extensions/browser/content_verify_job.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/content_verifier_delegate.h
diff --git a/extensions/browser/content_verifier_delegate.h b/extensions/browser/content_verifier_delegate.h
index 2feb7b794d6aa80532c106673b38ccd42b1cbca8..5fb72a2617c29014713aa4d950a0ac84f67ed88f 100644
--- a/extensions/browser/content_verifier_delegate.h
+++ b/extensions/browser/content_verifier_delegate.h
@@ -5,6 +5,8 @@
#ifndef EXTENSIONS_BROWSER_CONTENT_VERIFIER_DELEGATE_H_
#define EXTENSIONS_BROWSER_CONTENT_VERIFIER_DELEGATE_H_
+#include <stdint.h>
+
#include <set>
#include "extensions/browser/content_verify_job.h"
@@ -21,12 +23,12 @@ class Extension;
// A pointer to the bytes of a public key, and the number of bytes.
struct ContentVerifierKey {
- const uint8* data;
+ const uint8_t* data;
int size;
ContentVerifierKey() : data(NULL), size(0) {}
- ContentVerifierKey(const uint8* data, int size) {
+ ContentVerifierKey(const uint8_t* data, int size) {
this->data = data;
this->size = size;
}
« no previous file with comments | « extensions/browser/content_hash_reader.h ('k') | extensions/browser/content_verify_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698