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

Unified Diff: components/offline_pages/offline_page_test_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_test_archiver.h
diff --git a/components/offline_pages/offline_page_test_archiver.h b/components/offline_pages/offline_page_test_archiver.h
index a8a93830a8d27d3ab862f55482f38808125452ee..8cb3e2acc14e52c430179cd0c5cd75bf93da2660 100644
--- a/components/offline_pages/offline_page_test_archiver.h
+++ b/components/offline_pages/offline_page_test_archiver.h
@@ -5,6 +5,9 @@
#ifndef COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_TEST_ARCHIVER_H_
#define COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_TEST_ARCHIVER_H_
+#include <stddef.h>
+#include <stdint.h>
+
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/single_thread_task_runner.h"
@@ -35,7 +38,7 @@ class OfflinePageTestArchiver : public OfflinePageArchiver {
Observer* observer,
const GURL& url,
ArchiverResult result,
- int64 size_to_report,
+ int64_t size_to_report,
const scoped_refptr<base::SingleThreadTaskRunner>& task_runner);
~OfflinePageTestArchiver() override;
@@ -65,7 +68,7 @@ class OfflinePageTestArchiver : public OfflinePageArchiver {
base::FilePath archives_dir_;
base::FilePath filename_;
ArchiverResult result_;
- int64 size_to_report_;
+ int64_t size_to_report_;
bool create_archive_called_;
bool delayed_;
CreateArchiveCallback callback_;
« no previous file with comments | « components/offline_pages/offline_page_model_unittest.cc ('k') | components/offline_pages/offline_page_test_archiver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698