summaryrefslogtreecommitdiffstats
path: root/content/test
diff options
context:
space:
mode:
authorscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-23 04:18:20 +0000
committerscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-23 04:18:20 +0000
commitefde84b01394b6052590b2ede1ca2a47ad332755 (patch)
tree4a83e7544859652ff58c9cb525016f88f606c20a /content/test
parent44a6e57bb0d9ec21733271842d781fc9d4a4757a (diff)
downloadchromium_src-efde84b01394b6052590b2ede1ca2a47ad332755.zip
chromium_src-efde84b01394b6052590b2ede1ca2a47ad332755.tar.gz
chromium_src-efde84b01394b6052590b2ede1ca2a47ad332755.tar.bz2
LOG(INFO) -> VLOG(0) in content/
Let me know if you prefer to keep some of these as INFO or just delete them. R=jam@chromium.org BUG=322805 Review URL: https://codereview.chromium.org/84293002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236936 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/test')
-rw-r--r--content/test/content_test_launcher.cc2
-rw-r--r--content/test/image_decoder_test.cc2
-rw-r--r--content/test/plugin/plugin_client.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/content/test/content_test_launcher.cc b/content/test/content_test_launcher.cc
index ec384a7..09078b2 100644
--- a/content/test/content_test_launcher.cc
+++ b/content/test/content_test_launcher.cc
@@ -82,7 +82,7 @@ class ContentBrowserTestSuite : public ContentTestSuiteBase {
// as it also tries to set MessagePumpForUIFactory.
if (!base::MessageLoop::InitMessagePumpForUIFactory(
&CreateMessagePumpForUI))
- LOG(INFO) << "MessagePumpForUIFactory already set, unable to override.";
+ VLOG(0) << "MessagePumpForUIFactory already set, unable to override.";
#endif
ContentTestSuiteBase::Initialize();
diff --git a/content/test/image_decoder_test.cc b/content/test/image_decoder_test.cc
index 463cd0d1..13b3608 100644
--- a/content/test/image_decoder_test.cc
+++ b/content/test/image_decoder_test.cc
@@ -112,7 +112,7 @@ void ImageDecoderTest::SetUp() {
if (!base::PathExists(data_dir_)) {
const testing::TestInfo* const test_info =
testing::UnitTest::GetInstance()->current_test_info();
- LOG(INFO) << test_info->name() <<
+ VLOG(0) << test_info->name() <<
" not running because test data wasn't found.";
data_dir_.clear();
return;
diff --git a/content/test/plugin/plugin_client.cc b/content/test/plugin/plugin_client.cc
index 3410a66..e5d0f8c 100644
--- a/content/test/plugin/plugin_client.cc
+++ b/content/test/plugin/plugin_client.cc
@@ -264,7 +264,7 @@ void NPP_URLRedirectNotify(NPP instance, const char* url, int32_t status,
NPError NPP_ClearSiteData(const char* site,
uint64 flags,
uint64 max_age) {
- LOG(INFO) << "NPP_ClearSiteData called";
+ VLOG(0) << "NPP_ClearSiteData called";
return NPERR_NO_ERROR;
}
} // extern "C"