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

Unified Diff: chrome/browser/android/offline_pages/offline_page_mhtml_archiver.h

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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: chrome/browser/android/offline_pages/offline_page_mhtml_archiver.h
diff --git a/chrome/browser/android/offline_pages/offline_page_mhtml_archiver.h b/chrome/browser/android/offline_pages/offline_page_mhtml_archiver.h
index 7d4dc6a987bd0ba5edd9155e141c0de819481751..7f40172a019fd3a7ee71ff691fde53ece512744f 100644
--- a/chrome/browser/android/offline_pages/offline_page_mhtml_archiver.h
+++ b/chrome/browser/android/offline_pages/offline_page_mhtml_archiver.h
@@ -5,10 +5,13 @@
#ifndef CHROME_BROWSER_ANDROID_OFFLINE_PAGES_OFFLINE_PAGE_MHTML_ARCHIVER_H_
#define CHROME_BROWSER_ANDROID_OFFLINE_PAGES_OFFLINE_PAGE_MHTML_ARCHIVER_H_
+#include <stdint.h>
+
#include <map>
#include <string>
#include "base/callback.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "components/offline_pages/offline_page_archiver.h"
@@ -65,14 +68,14 @@ class OfflinePageMHTMLArchiver : public OfflinePageArchiver {
// Callback for Generating MHTML.
void OnGenerateMHTMLDone(const GURL& url,
const base::FilePath& file_path,
- int64 file_size);
+ int64_t file_size);
// Sends the result of archiving a page to the client that requested archive
// creation.
void ReportResult(ArchiverResult result,
const GURL& url,
const base::FilePath& file_path,
- int64 file_size);
+ int64_t file_size);
void ReportFailure(ArchiverResult result);
private:

Powered by Google App Engine
This is Rietveld 408576698