summaryrefslogtreecommitdiffstats
path: root/chrome/browser/performance_monitor/constants.h
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-28 01:26:21 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-28 01:26:21 +0000
commitff54ace24c73689f8d263d31140247b977617a54 (patch)
treecba4049a3ba1bc1d3e8406fda46f999773933a62 /chrome/browser/performance_monitor/constants.h
parent16c2bd71bb85aaec00904934ecc6d1e4f2e0515e (diff)
downloadchromium_src-ff54ace24c73689f8d263d31140247b977617a54.zip
chromium_src-ff54ace24c73689f8d263d31140247b977617a54.tar.gz
chromium_src-ff54ace24c73689f8d263d31140247b977617a54.tar.bz2
Use a direct include of time headers in chrome/browser/, part 4.
BUG=254986 TEST=none TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/18128002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209055 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/performance_monitor/constants.h')
-rw-r--r--chrome/browser/performance_monitor/constants.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/performance_monitor/constants.h b/chrome/browser/performance_monitor/constants.h
index 5face47..168baf2 100644
--- a/chrome/browser/performance_monitor/constants.h
+++ b/chrome/browser/performance_monitor/constants.h
@@ -6,7 +6,7 @@
#define CHROME_BROWSER_PERFORMANCE_MONITOR_CONSTANTS_H_
#include "base/basictypes.h"
-#include "base/time.h"
+#include "base/time/time.h"
namespace performance_monitor {
@@ -34,7 +34,7 @@ const int64 kBytesPerMegabyte = kBytesPerKilobyte * (1 << 10);
const int64 kBytesPerGigabyte = kBytesPerMegabyte * (1 << 10);
const int64 kBytesPerTerabyte = kBytesPerGigabyte * (1 << 10);
-// Time measurements - Most of these are imported from base/time.h
+// Time measurements - Most of these are imported from base/time/time.h
// These units are used for display (and it's related calculations), not for
// any mathematical analysis. Thus we can estimate for values without an exact
// conversion.