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

Unified Diff: chrome/browser/chromeos/extensions/file_manager/job_event_router.h

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (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/chromeos/extensions/file_manager/job_event_router.h
diff --git a/chrome/browser/chromeos/extensions/file_manager/job_event_router.h b/chrome/browser/chromeos/extensions/file_manager/job_event_router.h
index 43ec028bd4ace0e5f265d027ef5707d33bbd917b..90c79f2faf199003d9f0db3b759831f7c1e7b8d9 100644
--- a/chrome/browser/chromeos/extensions/file_manager/job_event_router.h
+++ b/chrome/browser/chromeos/extensions/file_manager/job_event_router.h
@@ -5,10 +5,13 @@
#ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_JOB_EVENT_ROUTER_H_
#define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_JOB_EVENT_ROUTER_H_
+#include <stdint.h>
+
#include <map>
#include <set>
#include <string>
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/threading/thread_checker.h"
@@ -70,9 +73,9 @@ class JobEventRouter : public drive::JobListObserver {
const std::string& extension_id,
const drive::JobInfo& job_info,
const extensions::api::file_manager_private::TransferState& state,
- const int64 num_total_jobs,
- const int64 num_completed_bytes,
- const int64 num_total_bytes);
+ const int64_t num_total_jobs,
+ const int64_t num_completed_bytes,
+ const int64_t num_total_bytes);
// Delay time before sending progress events.
base::TimeDelta event_delay_;
@@ -89,11 +92,11 @@ class JobEventRouter : public drive::JobListObserver {
// Computed bytes of tasks that have been processed. Once it completes all
// tasks, it clears the variable.
- int64 num_completed_bytes_;
+ int64_t num_completed_bytes_;
// Total bytes of tasks that have been processed. Once it completes all tasks,
// it clears the variable.
- int64 num_total_bytes_;
+ int64_t num_total_bytes_;
// Thread checker.
base::ThreadChecker thread_checker_;

Powered by Google App Engine
This is Rietveld 408576698