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

Unified Diff: components/nacl/renderer/histogram.cc

Issue 876483002: NaCl: Move src/trusted/plugin/ to components/nacl/renderer/plugin/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Update #include guards Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698