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

Side by Side Diff: base/metrics/metrics_hashes.h

Issue 1538743002: Switch to standard integer types in base/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DEPS roll too Created 4 years, 12 months 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 unified diff | Download patch
« no previous file with comments | « base/metrics/histogram_unittest.cc ('k') | base/metrics/metrics_hashes.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BASE_METRICS_METRICS_HASHES_H_ 5 #ifndef BASE_METRICS_METRICS_HASHES_H_
6 #define BASE_METRICS_METRICS_HASHES_H_ 6 #define BASE_METRICS_METRICS_HASHES_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <string> 9 #include <string>
10 10
11 #include "base/base_export.h" 11 #include "base/base_export.h"
12 12
13 namespace base { 13 namespace base {
14 14
15 // Computes a uint64 hash of a given string based on its MD5 hash. Suitable for 15 // Computes a uint64_t hash of a given string based on its MD5 hash. Suitable
16 // metric names. 16 // for metric names.
17 BASE_EXPORT uint64_t HashMetricName(const std::string& name); 17 BASE_EXPORT uint64_t HashMetricName(const std::string& name);
18 18
19 } // namespace metrics 19 } // namespace metrics
20 20
21 #endif // BASE_METRICS_METRICS_HASHES_H_ 21 #endif // BASE_METRICS_METRICS_HASHES_H_
OLDNEW
« no previous file with comments | « base/metrics/histogram_unittest.cc ('k') | base/metrics/metrics_hashes.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698