summaryrefslogtreecommitdiffstats
path: root/content
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
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')
-rw-r--r--content/app/android/child_process_service.cc2
-rw-r--r--content/app/content_main_runner.cc2
-rw-r--r--content/browser/browser_plugin/browser_plugin_guest.cc4
-rw-r--r--content/browser/browser_plugin/browser_plugin_host_browsertest.cc4
-rw-r--r--content/browser/browser_plugin/test_browser_plugin_guest.cc2
-rw-r--r--content/browser/child_process_launcher.cc2
-rw-r--r--content/browser/download/file_metadata_unittest_linux.cc2
-rw-r--r--content/browser/fileapi/file_system_browsertest.cc4
-rw-r--r--content/browser/gpu/gpu_data_manager_impl_private.cc2
-rw-r--r--content/browser/indexed_db/indexed_db_browsertest.cc4
-rw-r--r--content/browser/media/encrypted_media_browsertest.cc6
-rw-r--r--content/browser/media/media_source_browsertest.cc6
-rw-r--r--content/browser/plugin_browsertest.cc8
-rw-r--r--content/browser/plugin_service_impl.cc4
-rw-r--r--content/browser/renderer_host/media/video_capture_oracle.cc4
-rw-r--r--content/browser/renderer_host/p2p/socket_host_udp.cc4
-rw-r--r--content/browser/tracing/trace_subscriber_stdio.cc2
-rw-r--r--content/browser/worker_host/test/worker_browsertest.cc2
-rw-r--r--content/child/child_thread.cc2
-rw-r--r--content/common/gpu/client/gl_helper_benchmark.cc2
-rw-r--r--content/common/gpu/media/gpu_video_decode_accelerator.cc2
-rw-r--r--content/common/gpu/media/video_decode_accelerator_unittest.cc4
-rw-r--r--content/common/handle_enumerator_win.cc2
-rw-r--r--content/plugin/plugin_main_mac.mm2
-rw-r--r--content/public/test/render_widget_test.h2
-rw-r--r--content/renderer/accessibility/renderer_accessibility_complete.cc2
-rw-r--r--content/renderer/accessibility/renderer_accessibility_focus_only.cc2
-rw-r--r--content/renderer/media/webrtc_audio_device_unittest.cc2
-rw-r--r--content/renderer/renderer_main_platform_delegate_mac.mm2
-rw-r--r--content/shell/android/linker_test_apk/content_linker_test_linker_tests.cc4
-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
33 files changed, 49 insertions, 49 deletions
diff --git a/content/app/android/child_process_service.cc b/content/app/android/child_process_service.cc
index 4d5de1d..308246e 100644
--- a/content/app/android/child_process_service.cc
+++ b/content/app/android/child_process_service.cc
@@ -126,7 +126,7 @@ void InitChildProcess(JNIEnv* env,
}
void ExitChildProcess(JNIEnv* env, jclass clazz) {
- LOG(INFO) << "ChildProcessService: Exiting child process.";
+ VLOG(0) << "ChildProcessService: Exiting child process.";
LibraryLoaderExitHook();
_exit(0);
}
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc
index da27afa..6909c97 100644
--- a/content/app/content_main_runner.cc
+++ b/content/app/content_main_runner.cc
@@ -133,7 +133,7 @@ void EnableThemeSupportOnAllWindowStations() {
HWINSTA winsta0 = ::OpenWindowStationA("WinSta0", FALSE, GENERIC_READ);
if (!winsta0) {
- DLOG(INFO) << "Unable to open to WinSta0, we: "<< ::GetLastError();
+ DVLOG(0) << "Unable to open to WinSta0, we: "<< ::GetLastError();
return;
}
if (!::SetProcessWindowStation(winsta0)) {
diff --git a/content/browser/browser_plugin/browser_plugin_guest.cc b/content/browser/browser_plugin/browser_plugin_guest.cc
index a02a376..e80dcf5 100644
--- a/content/browser/browser_plugin/browser_plugin_guest.cc
+++ b/content/browser/browser_plugin/browser_plugin_guest.cc
@@ -195,7 +195,7 @@ class BrowserPluginGuest::NewWindowRequest : public PermissionRequest {
guest_->GetWebContents()->GetBrowserPluginGuestManager()->
GetGuestByInstanceID(instance_id_, embedder_render_process_id);
if (!guest) {
- LOG(INFO) << "Guest not found. Instance ID: " << instance_id_;
+ VLOG(0) << "Guest not found. Instance ID: " << instance_id_;
return;
}
@@ -411,7 +411,7 @@ void BrowserPluginGuest::RespondToPermissionRequest(
const std::string& user_input) {
RequestMap::iterator request_itr = permission_request_map_.find(request_id);
if (request_itr == permission_request_map_.end()) {
- LOG(INFO) << "Not a valid request ID.";
+ VLOG(0) << "Not a valid request ID.";
return;
}
request_itr->second->Respond(should_allow, user_input);
diff --git a/content/browser/browser_plugin/browser_plugin_host_browsertest.cc b/content/browser/browser_plugin/browser_plugin_host_browsertest.cc
index 17a1bc4..42c7486 100644
--- a/content/browser/browser_plugin/browser_plugin_host_browsertest.cc
+++ b/content/browser/browser_plugin/browser_plugin_host_browsertest.cc
@@ -456,10 +456,10 @@ IN_PROC_BROWSER_TEST_F(BrowserPluginHostTest, MAYBE_EmbedderSameAfterNav) {
const string16 expected_title = ASCIIToUTF16("done");
content::TitleWatcher title_watcher(shell()->web_contents(), expected_title);
NavigateToURL(shell(), test_url_new);
- LOG(INFO) << "Start waiting for title";
+ VLOG(0) << "Start waiting for title";
string16 actual_title = title_watcher.WaitAndGetTitle();
EXPECT_EQ(expected_title, actual_title);
- LOG(INFO) << "Done navigating to second page";
+ VLOG(0) << "Done navigating to second page";
TestBrowserPluginEmbedder* test_embedder_after_nav =
static_cast<TestBrowserPluginEmbedder*>(
diff --git a/content/browser/browser_plugin/test_browser_plugin_guest.cc b/content/browser/browser_plugin/test_browser_plugin_guest.cc
index 63237b3..8f6d302 100644
--- a/content/browser/browser_plugin/test_browser_plugin_guest.cc
+++ b/content/browser/browser_plugin/test_browser_plugin_guest.cc
@@ -83,7 +83,7 @@ void TestBrowserPluginGuest::RenderProcessGone(base::TerminationStatus status) {
exit_observed_ = true;
if (status != base::TERMINATION_STATUS_NORMAL_TERMINATION &&
status != base::TERMINATION_STATUS_STILL_RUNNING)
- LOG(INFO) << "Guest crashed status: " << status;
+ VLOG(0) << "Guest crashed status: " << status;
if (crash_message_loop_runner_.get())
crash_message_loop_runner_->Quit();
BrowserPluginGuest::RenderProcessGone(status);
diff --git a/content/browser/child_process_launcher.cc b/content/browser/child_process_launcher.cc
index 67d7bc2..57a7e25 100644
--- a/content/browser/child_process_launcher.cc
+++ b/content/browser/child_process_launcher.cc
@@ -373,7 +373,7 @@ class ChildProcessLauncher::Context
#endif
base::ProcessHandle handle) {
#if defined(OS_ANDROID)
- LOG(INFO) << "ChromeProcess: Stopping process with handle " << handle;
+ VLOG(0) << "ChromeProcess: Stopping process with handle " << handle;
StopChildProcess(handle);
#else
base::Process process(handle);
diff --git a/content/browser/download/file_metadata_unittest_linux.cc b/content/browser/download/file_metadata_unittest_linux.cc
index 4a3ebca..4f22351 100644
--- a/content/browser/download/file_metadata_unittest_linux.cc
+++ b/content/browser/download/file_metadata_unittest_linux.cc
@@ -58,7 +58,7 @@ class FileMetadataLinuxTest : public testing::Test {
"user.test", "test", 4, 0);
is_xattr_supported_ = (!result) || (errno != ENOTSUP);
if (!is_xattr_supported_) {
- LOG(INFO) << "Test will be skipped because extended attributes are not "
+ VLOG(0) << "Test will be skipped because extended attributes are not "
<< "supported on this OS/file system.";
}
}
diff --git a/content/browser/fileapi/file_system_browsertest.cc b/content/browser/fileapi/file_system_browsertest.cc
index eafb1b1..a3a83ef 100644
--- a/content/browser/fileapi/file_system_browsertest.cc
+++ b/content/browser/fileapi/file_system_browsertest.cc
@@ -33,9 +33,9 @@ class FileSystemBrowserTest : public ContentBrowserTest {
// a #pass or #fail ref.
Shell* the_browser = incognito ? CreateOffTheRecordBrowser() : shell();
- LOG(INFO) << "Navigating to URL and blocking.";
+ VLOG(0) << "Navigating to URL and blocking.";
NavigateToURLBlockUntilNavigationsComplete(the_browser, test_url, 2);
- LOG(INFO) << "Navigation done.";
+ VLOG(0) << "Navigation done.";
std::string result =
the_browser->web_contents()->GetLastCommittedURL().ref();
if (result != "pass") {
diff --git a/content/browser/gpu/gpu_data_manager_impl_private.cc b/content/browser/gpu/gpu_data_manager_impl_private.cc
index fec74a2..b5b44ff 100644
--- a/content/browser/gpu/gpu_data_manager_impl_private.cc
+++ b/content/browser/gpu/gpu_data_manager_impl_private.cc
@@ -550,7 +550,7 @@ void GpuDataManagerImplPrivate::GetGLStrings(std::string* gl_vendor,
void GpuDataManagerImplPrivate::Initialize() {
TRACE_EVENT0("startup", "GpuDataManagerImpl::Initialize");
if (finalized_) {
- DLOG(INFO) << "GpuDataManagerImpl marked as finalized; skipping Initialize";
+ DVLOG(0) << "GpuDataManagerImpl marked as finalized; skipping Initialize";
return;
}
diff --git a/content/browser/indexed_db/indexed_db_browsertest.cc b/content/browser/indexed_db/indexed_db_browsertest.cc
index 108cf88..9fca832 100644
--- a/content/browser/indexed_db/indexed_db_browsertest.cc
+++ b/content/browser/indexed_db/indexed_db_browsertest.cc
@@ -43,9 +43,9 @@ class IndexedDBBrowserTest : public ContentBrowserTest {
// a #pass or #fail ref.
Shell* the_browser = incognito ? CreateOffTheRecordBrowser() : shell();
- LOG(INFO) << "Navigating to URL and blocking.";
+ VLOG(0) << "Navigating to URL and blocking.";
NavigateToURLBlockUntilNavigationsComplete(the_browser, test_url, 2);
- LOG(INFO) << "Navigation done.";
+ VLOG(0) << "Navigation done.";
std::string result =
the_browser->web_contents()->GetLastCommittedURL().ref();
if (result != "pass") {
diff --git a/content/browser/media/encrypted_media_browsertest.cc b/content/browser/media/encrypted_media_browsertest.cc
index 528dfb9..f4e5eaf 100644
--- a/content/browser/media/encrypted_media_browsertest.cc
+++ b/content/browser/media/encrypted_media_browsertest.cc
@@ -38,7 +38,7 @@ namespace content {
static bool IsMSESupported() {
#if defined(OS_ANDROID)
if (base::android::BuildInfo::GetInstance()->sdk_int() < 16) {
- LOG(INFO) << "MSE is only supported in Android 4.1 and later.";
+ VLOG(0) << "MSE is only supported in Android 4.1 and later.";
return false;
}
#endif // defined(OS_ANDROID)
@@ -74,7 +74,7 @@ class EncryptedMediaTest : public content::MediaBrowserTest,
void TestConfigChange() {
if (CurrentSourceType() != MSE || !IsMSESupported()) {
- LOG(INFO) << "Skipping test - config change test requires MSE.";
+ VLOG(0) << "Skipping test - config change test requires MSE.";
return;
}
@@ -91,7 +91,7 @@ class EncryptedMediaTest : public content::MediaBrowserTest,
SrcType src_type,
const char* expectation) {
if (src_type == MSE && !IsMSESupported()) {
- LOG(INFO) << "Skipping test - MSE not supported.";
+ VLOG(0) << "Skipping test - MSE not supported.";
return;
}
diff --git a/content/browser/media/media_source_browsertest.cc b/content/browser/media/media_source_browsertest.cc
index 360baa7..27242e5 100644
--- a/content/browser/media/media_source_browsertest.cc
+++ b/content/browser/media/media_source_browsertest.cc
@@ -20,7 +20,7 @@ namespace content {
static bool IsMSESupported() {
#if defined(OS_ANDROID)
if (base::android::BuildInfo::GetInstance()->sdk_int() < 16) {
- LOG(INFO) << "MSE is only supported in Android 4.1 and later.";
+ VLOG(0) << "MSE is only supported in Android 4.1 and later.";
return false;
}
#endif // defined(OS_ANDROID)
@@ -32,7 +32,7 @@ class MediaSourceTest : public content::MediaBrowserTest {
void TestSimplePlayback(const char* media_file, const char* media_type,
const char* expectation) {
if (!IsMSESupported()) {
- LOG(INFO) << "Skipping test - MSE not supported.";
+ VLOG(0) << "Skipping test - MSE not supported.";
return;
}
@@ -71,7 +71,7 @@ IN_PROC_BROWSER_TEST_F(MediaSourceTest, Playback_Type_Error) {
// Test changed to skip checks resulting in flakiness. Proper fix still needed.
IN_PROC_BROWSER_TEST_F(MediaSourceTest, ConfigChangeVideo) {
if (!IsMSESupported()) {
- LOG(INFO) << "Skipping test - MSE not supported.";
+ VLOG(0) << "Skipping test - MSE not supported.";
return;
}
RunMediaTestPage("mse_config_change.html", NULL, kEnded, true);
diff --git a/content/browser/plugin_browsertest.cc b/content/browser/plugin_browsertest.cc
index df8fc58..2a846f1 100644
--- a/content/browser/plugin_browsertest.cc
+++ b/content/browser/plugin_browsertest.cc
@@ -92,8 +92,8 @@ class PluginTest : public ContentBrowserTest {
if (title == ASCIIToUTF16("plugin_not_found")) {
const testing::TestInfo* const test_info =
testing::UnitTest::GetInstance()->current_test_info();
- LOG(INFO) << "PluginTest." << test_info->name() <<
- " not running because plugin not installed.";
+ VLOG(0) << "PluginTest." << test_info->name()
+ << " not running because plugin not installed.";
} else {
EXPECT_EQ(expected_title, title);
}
@@ -117,8 +117,8 @@ class PluginTest : public ContentBrowserTest {
if (!base::PathExists(path)) {
const testing::TestInfo* const test_info =
testing::UnitTest::GetInstance()->current_test_info();
- LOG(INFO) << "PluginTest." << test_info->name() <<
- " not running because test data wasn't found.";
+ VLOG(0) << "PluginTest." << test_info->name()
+ << " not running because test data wasn't found.";
return;
}
diff --git a/content/browser/plugin_service_impl.cc b/content/browser/plugin_service_impl.cc
index 1e4083d..1ddcf40 100644
--- a/content/browser/plugin_service_impl.cc
+++ b/content/browser/plugin_service_impl.cc
@@ -736,7 +736,7 @@ void PluginServiceImpl::AddExtraPluginPath(const base::FilePath& path) {
if (!NPAPIPluginsSupported()) {
// TODO(jam): remove and just have CHECK once we're sure this doesn't get
// triggered.
- DLOG(INFO) << "NPAPI plugins not supported";
+ DVLOG(0) << "NPAPI plugins not supported";
return;
}
PluginList::Singleton()->AddExtraPluginPath(path);
@@ -755,7 +755,7 @@ void PluginServiceImpl::RegisterInternalPlugin(
bool add_at_beginning) {
if (!NPAPIPluginsSupported() &&
info.type == WebPluginInfo::PLUGIN_TYPE_NPAPI) {
- DLOG(INFO) << "Don't register NPAPI plugins when they're not supported";
+ DVLOG(0) << "Don't register NPAPI plugins when they're not supported";
return;
}
PluginList::Singleton()->RegisterInternalPlugin(info, add_at_beginning);
diff --git a/content/browser/renderer_host/media/video_capture_oracle.cc b/content/browser/renderer_host/media/video_capture_oracle.cc
index c05ac0f..2829595 100644
--- a/content/browser/renderer_host/media/video_capture_oracle.cc
+++ b/content/browser/renderer_host/media/video_capture_oracle.cc
@@ -130,10 +130,10 @@ void SmoothEventSampler::RecordSample() {
}
bool is_paused = overdue_sample_count_ == redundant_capture_goal_;
- LOG_IF(INFO, !was_paused && is_paused)
+ VLOG_IF(0, !was_paused && is_paused)
<< "Tab content unchanged for " << redundant_capture_goal_
<< " frames; capture will halt until content changes.";
- LOG_IF(INFO, was_paused && !is_paused)
+ VLOG_IF(0, was_paused && !is_paused)
<< "Content changed; capture will resume.";
}
diff --git a/content/browser/renderer_host/p2p/socket_host_udp.cc b/content/browser/renderer_host/p2p/socket_host_udp.cc
index e199d94..6b433f4 100644
--- a/content/browser/renderer_host/p2p/socket_host_udp.cc
+++ b/content/browser/renderer_host/p2p/socket_host_udp.cc
@@ -185,7 +185,7 @@ void P2PSocketHostUdp::Send(const net::IPEndPoint& to,
}
if (throttler_->DropNextPacket(data.size())) {
- LOG(INFO) << "STUN message is dropped due to high volume.";
+ VLOG(0) << "STUN message is dropped due to high volume.";
// Do not reset socket.
return;
}
@@ -264,7 +264,7 @@ void P2PSocketHostUdp::HandleSendResult(uint64 packet_id, int result) {
if (result > 0) {
message_sender_->Send(new P2PMsg_OnSendComplete(id_));
} else if (IsTransientError(result)) {
- LOG(INFO) << "sendto() has failed twice returning a "
+ VLOG(0) << "sendto() has failed twice returning a "
" transient error. Dropping the packet.";
} else if (result < 0) {
LOG(ERROR) << "Error when sending data in UDP socket: " << result;
diff --git a/content/browser/tracing/trace_subscriber_stdio.cc b/content/browser/tracing/trace_subscriber_stdio.cc
index 2c6aede..da81660 100644
--- a/content/browser/tracing/trace_subscriber_stdio.cc
+++ b/content/browser/tracing/trace_subscriber_stdio.cc
@@ -37,7 +37,7 @@ class TraceSubscriberStdio::TraceSubscriberStdioWorker
return;
}
- LOG(INFO) << "Logging performance trace to file: " << path_.value();
+ VLOG(0) << "Logging performance trace to file: " << path_.value();
if (file_type_ == FILE_TYPE_PROPERTY_LIST)
WriteString("{\"traceEvents\":");
WriteString("[");
diff --git a/content/browser/worker_host/test/worker_browsertest.cc b/content/browser/worker_host/test/worker_browsertest.cc
index 73ad82a..a71a28e 100644
--- a/content/browser/worker_host/test/worker_browsertest.cc
+++ b/content/browser/worker_host/test/worker_browsertest.cc
@@ -166,7 +166,7 @@ IN_PROC_BROWSER_TEST_F(WorkerTest, DISABLED_LimitTotal) {
IN_PROC_BROWSER_TEST_F(WorkerTest, LimitTotal) {
#endif
if (base::SysInfo::AmountOfPhysicalMemoryMB() < 8192) {
- LOG(INFO) << "WorkerTest.LimitTotal not running because it needs 8 GB RAM.";
+ VLOG(0) << "WorkerTest.LimitTotal not running because it needs 8 GB RAM.";
return;
}
diff --git a/content/child/child_thread.cc b/content/child/child_thread.cc
index 8b79d8d..86c615b 100644
--- a/content/child/child_thread.cc
+++ b/content/child/child_thread.cc
@@ -490,7 +490,7 @@ void ChildThread::OnProcessFinalRelease() {
}
void ChildThread::EnsureConnected() {
- LOG(INFO) << "ChildThread::EnsureConnected()";
+ VLOG(0) << "ChildThread::EnsureConnected()";
base::KillProcess(base::GetCurrentProcessHandle(), 0, false);
}
diff --git a/content/common/gpu/client/gl_helper_benchmark.cc b/content/common/gpu/client/gl_helper_benchmark.cc
index bc0664e..43ce6b6 100644
--- a/content/common/gpu/client/gl_helper_benchmark.cc
+++ b/content/common/gpu/client/gl_helper_benchmark.cc
@@ -296,7 +296,7 @@ TEST_F(GLHelperTest, DISABLED_ScaleTestImage) {
std::string filename = base::StringPrintf("testoutput_%s_%d.ppm",
kQualityNames[q],
percents[p]);
- LOG(INFO) << "Writing " << filename;
+ VLOG(0) << "Writing " << filename;
SaveToFile(&output_pixels, base::FilePath::FromUTF8Unsafe(filename));
}
}
diff --git a/content/common/gpu/media/gpu_video_decode_accelerator.cc b/content/common/gpu/media/gpu_video_decode_accelerator.cc
index 38551c9..f442da5 100644
--- a/content/common/gpu/media/gpu_video_decode_accelerator.cc
+++ b/content/common/gpu/media/gpu_video_decode_accelerator.cc
@@ -266,7 +266,7 @@ void GpuVideoDecodeAccelerator::Initialize(
NotifyError(media::VideoDecodeAccelerator::PLATFORM_FAILURE);
return;
}
- DLOG(INFO) << "Initializing DXVA HW decoder for windows.";
+ DVLOG(0) << "Initializing DXVA HW decoder for windows.";
video_decode_accelerator_.reset(new DXVAVideoDecodeAccelerator(
this, make_context_current_));
#elif defined(OS_CHROMEOS) && defined(ARCH_CPU_ARMEL) && defined(USE_X11)
diff --git a/content/common/gpu/media/video_decode_accelerator_unittest.cc b/content/common/gpu/media/video_decode_accelerator_unittest.cc
index 2ab661d..7c1f077 100644
--- a/content/common/gpu/media/video_decode_accelerator_unittest.cc
+++ b/content/common/gpu/media/video_decode_accelerator_unittest.cc
@@ -1269,7 +1269,7 @@ TEST_P(VideoDecodeAcceleratorParamTest, TestSimpleDecode) {
EXPECT_EQ(client->num_done_bitstream_buffers(),
client->num_queued_fragments());
}
- LOG(INFO) << "Decoder " << i << " fps: " << client->frames_per_second();
+ VLOG(0) << "Decoder " << i << " fps: " << client->frames_per_second();
if (!render_as_thumbnails) {
int min_fps = suppress_rendering ?
video_file->min_fps_no_render : video_file->min_fps_render;
@@ -1456,7 +1456,7 @@ TEST_F(VideoDecodeAcceleratorTest, TestDecodeTimeMedian) {
int decode_time_median = client->decode_time_median();
std::string output_string =
base::StringPrintf("Decode time median: %d ms", decode_time_median);
- LOG(INFO) << output_string;
+ VLOG(0) << output_string;
ASSERT_GT(decode_time_median, 0);
if (g_output_log != NULL)
diff --git a/content/common/handle_enumerator_win.cc b/content/common/handle_enumerator_win.cc
index 4e17aa2..4482d5b 100644
--- a/content/common/handle_enumerator_win.cc
+++ b/content/common/handle_enumerator_win.cc
@@ -75,7 +75,7 @@ void HandleEnumerator::EnumerateHandles() {
output += GetAccessString(current_type,
sys_handle->handle_entry()->GrantedAccess);
}
- DLOG(INFO) << output;
+ DVLOG(0) << output;
}
HandleType StringToHandleType(const string16& type) {
diff --git a/content/plugin/plugin_main_mac.mm b/content/plugin/plugin_main_mac.mm
index df4d701..91deed8 100644
--- a/content/plugin/plugin_main_mac.mm
+++ b/content/plugin/plugin_main_mac.mm
@@ -19,7 +19,7 @@ void TrimInterposeEnvironment() {
std::string interpose_list;
if (!env->GetVar(kDYLDInsertLibrariesKey, &interpose_list)) {
- LOG(INFO) << "No Carbon Interpose library found.";
+ VLOG(0) << "No Carbon Interpose library found.";
return;
}
diff --git a/content/public/test/render_widget_test.h b/content/public/test/render_widget_test.h
index 9884c2b..056b086 100644
--- a/content/public/test/render_widget_test.h
+++ b/content/public/test/render_widget_test.h
@@ -54,7 +54,7 @@ class RenderWidgetTest : public RenderViewTest {
// FilePath tmp_path;
// file_util::CreateTemporaryFile(&tmp_path);
// OutputBitmapToFile(bitmap, tmp_path);
- // LOG(INFO) << "Bitmap image stored at: " << tmp_path.value();
+ // VLOG(0) << "Bitmap image stored at: " << tmp_path.value();
void OutputBitmapToFile(const SkBitmap& bitmap,
const base::FilePath& file_path);
};
diff --git a/content/renderer/accessibility/renderer_accessibility_complete.cc b/content/renderer/accessibility/renderer_accessibility_complete.cc
index 678984e..14e3837 100644
--- a/content/renderer/accessibility/renderer_accessibility_complete.cc
+++ b/content/renderer/accessibility/renderer_accessibility_complete.cc
@@ -273,7 +273,7 @@ void RendererAccessibilityComplete::SendPendingAccessibilityEvents() {
if (logging_) {
AccessibilityNodeDataTreeNode tree;
MakeAccessibilityNodeDataTree(event_msg.nodes, &tree);
- LOG(INFO) << "Accessibility update: \n"
+ VLOG(0) << "Accessibility update: \n"
<< "routing id=" << routing_id()
<< " event="
<< AccessibilityEventToString(event.event_type)
diff --git a/content/renderer/accessibility/renderer_accessibility_focus_only.cc b/content/renderer/accessibility/renderer_accessibility_focus_only.cc
index 050918d..b8d1f68 100644
--- a/content/renderer/accessibility/renderer_accessibility_focus_only.cc
+++ b/content/renderer/accessibility/renderer_accessibility_focus_only.cc
@@ -132,7 +132,7 @@ void RendererAccessibilityFocusOnly::HandleFocusedNodeChanged(
#ifndef NDEBUG
if (logging_) {
- LOG(INFO) << "Accessibility update: \n"
+ VLOG(0) << "Accessibility update: \n"
<< "routing id=" << routing_id()
<< " event="
<< AccessibilityEventToString(event.event_type)
diff --git a/content/renderer/media/webrtc_audio_device_unittest.cc b/content/renderer/media/webrtc_audio_device_unittest.cc
index d989864..6dcdda7 100644
--- a/content/renderer/media/webrtc_audio_device_unittest.cc
+++ b/content/renderer/media/webrtc_audio_device_unittest.cc
@@ -815,7 +815,7 @@ TEST_F(MAYBE_WebRTCAudioDeviceTest, MAYBE_FullDuplexAudioWithAGC) {
proxy->Start();
proxy->Play();
- LOG(INFO) << ">> You should now be able to hear yourself in loopback...";
+ VLOG(0) << ">> You should now be able to hear yourself in loopback...";
message_loop_.PostDelayedTask(FROM_HERE,
base::MessageLoop::QuitClosure(),
base::TimeDelta::FromSeconds(2));
diff --git a/content/renderer/renderer_main_platform_delegate_mac.mm b/content/renderer/renderer_main_platform_delegate_mac.mm
index b121144..9f6172e 100644
--- a/content/renderer/renderer_main_platform_delegate_mac.mm
+++ b/content/renderer/renderer_main_platform_delegate_mac.mm
@@ -101,7 +101,7 @@ static void LogTestMessage(std::string message, bool is_error) {
if (is_error)
LOG(ERROR) << message;
else
- LOG(INFO) << message;
+ VLOG(0) << message;
}
bool RendererMainPlatformDelegate::InitSandboxTests(bool no_sandbox) {
diff --git a/content/shell/android/linker_test_apk/content_linker_test_linker_tests.cc b/content/shell/android/linker_test_apk/content_linker_test_linker_tests.cc
index c46e864..c970ff6 100644
--- a/content/shell/android/linker_test_apk/content_linker_test_linker_tests.cc
+++ b/content/shell/android/linker_test_apk/content_linker_test_linker_tests.cc
@@ -136,7 +136,7 @@ jboolean RunChecks(bool in_browser_process, bool need_relros) {
}
}
- LOG(INFO)
+ VLOG(0)
<< prefix
<< base::StringPrintf(
"There are %d shared RELRO sections in this process, %d are bad",
@@ -162,7 +162,7 @@ jboolean RunChecks(bool in_browser_process, bool need_relros) {
}
}
- LOG(INFO) << prefix << "SUCCESS";
+ VLOG(0) << prefix << "SUCCESS";
return true;
}
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"