diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 20:43:38 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 20:43:38 +0000 |
commit | 3520b16bdefeece3a46ca1ddfb8f3187508c3d9f (patch) | |
tree | f0c1f40cab05f63ea8338e80297ae999da118023 /chrome | |
parent | dede32f68fe61024558c4e433b08fcf221bab04a (diff) | |
download | chromium_src-3520b16bdefeece3a46ca1ddfb8f3187508c3d9f.zip chromium_src-3520b16bdefeece3a46ca1ddfb8f3187508c3d9f.tar.gz chromium_src-3520b16bdefeece3a46ca1ddfb8f3187508c3d9f.tar.bz2 |
Convert LOG(INFO) to VLOG(1) - chrome/browser/chromeos/dom_ui/.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3969003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63412 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/chromeos/dom_ui/menu_ui.cc | 2 | ||||
-rw-r--r-- | chrome/browser/chromeos/dom_ui/mobile_setup_ui.cc | 8 | ||||
-rw-r--r-- | chrome/browser/chromeos/dom_ui/register_page_ui.cc | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/chrome/browser/chromeos/dom_ui/menu_ui.cc b/chrome/browser/chromeos/dom_ui/menu_ui.cc index 90b535c..d7a73b8 100644 --- a/chrome/browser/chromeos/dom_ui/menu_ui.cc +++ b/chrome/browser/chromeos/dom_ui/menu_ui.cc @@ -525,7 +525,7 @@ void MenuHandler::HandleLog(const ListValue* values) { std::string msg; bool success = values->GetString(0, &msg); DCHECK(success); - DLOG(INFO) << msg; + DVLOG(1) << msg; } void MenuHandler::UpdatePreferredSize(const gfx::Size& new_size) { diff --git a/chrome/browser/chromeos/dom_ui/mobile_setup_ui.cc b/chrome/browser/chromeos/dom_ui/mobile_setup_ui.cc index 758565a..879d333 100644 --- a/chrome/browser/chromeos/dom_ui/mobile_setup_ui.cc +++ b/chrome/browser/chromeos/dom_ui/mobile_setup_ui.cc @@ -184,13 +184,13 @@ bool CellularConfigDocument::LoadFromFile(const FilePath& config_path) { scoped_ptr<Value> root(base::JSONReader::Read(config, true)); DCHECK(root.get() != NULL); if (!root.get() || root->GetType() != Value::TYPE_DICTIONARY) { - LOG(INFO) << "Bad cellular config file"; + VLOG(1) << "Bad cellular config file"; return false; } DictionaryValue* root_dict = static_cast<DictionaryValue*>(root.get()); if (!root_dict->GetString(kVersionField, &version_)) { - LOG(INFO) << "Cellular config file missing version"; + VLOG(1) << "Cellular config file missing version"; return false; } DictionaryValue* errors = NULL; @@ -201,7 +201,7 @@ bool CellularConfigDocument::LoadFromFile(const FilePath& config_path) { ++keys) { std::string value; if (!errors->GetString(*keys, &value)) { - LOG(INFO) << "Bad cellular config error value"; + VLOG(1) << "Bad cellular config error value"; error_map_.clear(); return false; } @@ -464,7 +464,7 @@ void MobileSetupHandler::LoadCellularConfig() { scoped_ptr<CellularConfigDocument> config(new CellularConfigDocument()); bool config_loaded = config->LoadFromFile(config_path); if (config_loaded) { - LOG(INFO) << "Cellular config file loaded: " << kCellularConfigPath; + VLOG(1) << "Cellular config file loaded: " << kCellularConfigPath; // lock cellular_config_.reset(config.release()); } else { diff --git a/chrome/browser/chromeos/dom_ui/register_page_ui.cc b/chrome/browser/chromeos/dom_ui/register_page_ui.cc index 90d623b..1aa7971 100644 --- a/chrome/browser/chromeos/dom_ui/register_page_ui.cc +++ b/chrome/browser/chromeos/dom_ui/register_page_ui.cc @@ -222,7 +222,7 @@ void RegisterPageHandler::HandleGetRegistrationUrl(const ListValue* args) { WizardController::default_controller()->GetCustomization()) { const std::string& url = WizardController::default_controller()-> GetCustomization()->registration_url(); - LOG(INFO) << "Loading registration form with URL: " << url; + VLOG(1) << "Loading registration form with URL: " << url; GURL register_url(url); if (!register_url.is_valid()) { SkipRegistration("Registration URL defined in manifest is invalid."); |