diff options
author | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-03 17:29:26 +0000 |
---|---|---|
committer | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-03 17:29:26 +0000 |
commit | 02c6ab4dd16ffd395b67f76baac4a2e3ecaa5b52 (patch) | |
tree | a43c49d99d1e0df9ed7e722ec3ad08f98fe80289 /chrome/browser/chromeos/external_metrics.cc | |
parent | 7267ff8633d8aad1c6cc5a7a5850ef2c70dfb3e7 (diff) | |
download | chromium_src-02c6ab4dd16ffd395b67f76baac4a2e3ecaa5b52.zip chromium_src-02c6ab4dd16ffd395b67f76baac4a2e3ecaa5b52.tar.gz chromium_src-02c6ab4dd16ffd395b67f76baac4a2e3ecaa5b52.tar.bz2 |
Update the location of extract_actions.py in comments.
The file was moved in r191811.
BUG=none
TEST=none
R=isherman@chromium.org
TBR=achuith@chromium.org, joi@chromium.org
Review URL: https://codereview.chromium.org/100453005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238423 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/external_metrics.cc')
-rw-r--r-- | chrome/browser/chromeos/external_metrics.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/chromeos/external_metrics.cc b/chrome/browser/chromeos/external_metrics.cc index 0a7f9353..c1e0415 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"); |