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

Unified Diff: components/offline_pages/offline_page_archiver.h

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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: components/offline_pages/offline_page_archiver.h
diff --git a/components/offline_pages/offline_page_archiver.h b/components/offline_pages/offline_page_archiver.h
index eec0f7ccb0813067c6cbac1e58d755651087aab0..5a412a1d8b2311ed93f7998d7919eea5a9cf6c46 100644
--- a/components/offline_pages/offline_page_archiver.h
+++ b/components/offline_pages/offline_page_archiver.h
@@ -5,6 +5,8 @@
#ifndef COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_ARCHIVER_H_
#define COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_ARCHIVER_H_
+#include <stdint.h>
+
#include "base/callback.h"
#include "base/files/file_path.h"
#include "base/strings/string16.h"
@@ -58,7 +60,7 @@ class OfflinePageArchiver {
ArchiverResult /* result */,
const GURL& /* url */,
const base::FilePath& /* file_path */,
- int64 /* file_size */)> CreateArchiveCallback;
+ int64_t /* file_size */)> CreateArchiveCallback;
virtual ~OfflinePageArchiver() {}
« no previous file with comments | « components/ntp_snippets/ntp_snippets_service_unittest.cc ('k') | components/offline_pages/offline_page_feature.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698