Index: components/nacl/renderer/histogram.cc |
diff --git a/components/nacl/renderer/histogram.cc b/components/nacl/renderer/histogram.cc |
index 20e5c1cc18c15d74e9e17dfb35f8091d93b53073..9d8e15dee20a2e8b89b2f496bac6f90a86860353 100644 |
--- a/components/nacl/renderer/histogram.cc |
+++ b/components/nacl/renderer/histogram.cc |
@@ -86,7 +86,7 @@ void HistogramEnumerateOsArch(const std::string& sandbox_isa) { |
// Records values up to 20 seconds. |
// These constants MUST match those in |
-// ppapi/native_client/src/trusted/plugin/plugin.cc |
+// components/nacl/renderer/plugin/plugin.cc |
void HistogramTimeSmall(const std::string& name, int64_t sample) { |
if (sample < 0) |
sample = 0; |
@@ -102,7 +102,7 @@ void HistogramTimeSmall(const std::string& name, int64_t sample) { |
// Records values up to 3 minutes, 20 seconds. |
// These constants MUST match those in |
-// ppapi/native_client/src/trusted/plugin/plugin.cc |
+// components/nacl/renderer/plugin/plugin.cc |
void HistogramTimeMedium(const std::string& name, int64_t sample) { |
if (sample < 0) |
sample = 0; |
@@ -118,7 +118,7 @@ void HistogramTimeMedium(const std::string& name, int64_t sample) { |
// Records values up to 33 minutes. |
// These constants MUST match those in |
-// ppapi/native_client/src/trusted/plugin/plugin.cc |
+// components/nacl/renderer/plugin/plugin.cc |
void HistogramTimeLarge(const std::string& name, int64_t sample) { |
if (sample < 0) |
sample = 0; |