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

Unified Diff: chrome/browser/chromeos/external_metrics.cc

Issue 100453005: Update the location of extract_actions.py in comments. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: change LOG(INFO) to VLOG(1) Created 7 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
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | content/public/browser/user_metrics.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/external_metrics.cc
diff --git a/chrome/browser/chromeos/external_metrics.cc b/chrome/browser/chromeos/external_metrics.cc
index 0a7f9353e7e3226de0a5ad582b77f997b2ea38ee..c1e041534016438b5196ac66819a1c11fd57a0f4 100644
--- a/chrome/browser/chromeos/external_metrics.cc
+++ b/chrome/browser/chromeos/external_metrics.cc
@@ -91,9 +91,9 @@ void SetupProgressiveScanFieldTrial() {
// Write the group to the file to be read by ChromeOS.
int size = static_cast<int>(group_char.length());
if (file_util::WriteFile(group_file_path, group_char.c_str(), size) == size) {
- LOG(INFO) << "Configured in group '" << trial->group_name()
- << "' ('" << group_char << "') for "
- << name_of_experiment << " field trial";
+ VLOG(1) << "Configured in group '" << trial->group_name()
+ << "' ('" << group_char << "') for "
+ << name_of_experiment << " field trial";
} else {
LOG(ERROR) << "Couldn't write to " << group_file_path.value();
}
@@ -110,8 +110,8 @@ ExternalMetrics::~ExternalMetrics() {}
void ExternalMetrics::Start() {
// Register user actions external to the browser.
- // chrome/tools/extract_actions.py won't understand these lines, so all of
- // these are explicitly added in that script.
+ // tools/metrics/actions/extract_actions.py won't understand these lines, so
+ // all of these are explicitly added in that script.
// TODO(derat): We shouldn't need to verify actions before reporting them;
// remove all of this once http://crosbug.com/11125 is fixed.
valid_user_actions_.insert("Cryptohome.PKCS11InitFail");
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | content/public/browser/user_metrics.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698