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

Unified Diff: components/cronet/histogram_manager.h

Issue 1546143002: Switch to standard integer types in components/, 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: components/cronet/histogram_manager.h
diff --git a/components/cronet/histogram_manager.h b/components/cronet/histogram_manager.h
index ae4b249cc43ad69cfee23406f2c04a7f270c2dd7..e4305e7c0e16540ee2103e31ff0c70ff915187ca 100644
--- a/components/cronet/histogram_manager.h
+++ b/components/cronet/histogram_manager.h
@@ -5,10 +5,11 @@
#ifndef COMPONENTS_CRONET_HISTOGRAM_MANAGER_H_
#define COMPONENTS_CRONET_HISTOGRAM_MANAGER_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
-#include "base/basictypes.h"
#include "base/lazy_instance.h"
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
@@ -29,7 +30,7 @@ class HistogramManager : public base::HistogramFlattener {
// Snapshot all histograms to record the delta into |uma_proto_| and then
// returns the serialized protobuf representation of the record in |data|.
// Returns true if it was successfully serialized.
- bool GetDeltas(std::vector<uint8>* data);
+ bool GetDeltas(std::vector<uint8_t>* data);
// TODO(mef): Hang Histogram Manager off java object instead of singleton.
static HistogramManager* GetInstance();
« no previous file with comments | « components/cronet/android/wrapped_channel_upload_element_reader.cc ('k') | components/cronet/histogram_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698