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

Unified Diff: chrome/browser/chromeos/power/cpu_data_collector.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/power/cpu_data_collector.h
diff --git a/chrome/browser/chromeos/power/cpu_data_collector.h b/chrome/browser/chromeos/power/cpu_data_collector.h
index 59ad8048b9ce0e7d2ce9a17b3e1a8cbfc318f213..f4213a56b998449cec9c72f396e272fb649f17e9 100644
--- a/chrome/browser/chromeos/power/cpu_data_collector.h
+++ b/chrome/browser/chromeos/power/cpu_data_collector.h
@@ -5,12 +5,14 @@
#ifndef CHROME_BROWSER_CHROMEOS_POWER_CPU_DATA_COLLECTOR_H_
#define CHROME_BROWSER_CHROMEOS_POWER_CPU_DATA_COLLECTOR_H_
+#include <stdint.h>
+
#include <deque>
#include <map>
#include <string>
#include <vector>
-#include "base/basictypes.h"
+#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
@@ -40,7 +42,7 @@ class CpuDataCollector {
// is the name at index i in the vector returned by cpu_idle_state_names().
// Similarly, for freq state occupancy, similar information is in the vector
// returned by cpu_freq_state_names().
- std::vector<int64> time_in_state;
+ std::vector<int64_t> time_in_state;
};
typedef std::deque<StateOccupancySample> StateOccupancySampleDeque;
« no previous file with comments | « chrome/browser/chromeos/policy/wildcard_login_checker.h ('k') | chrome/browser/chromeos/power/cpu_data_collector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698