diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-22 00:58:58 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-22 00:58:58 +0000 |
commit | 11c2688a90c8626c77e4855d601d9e7b180e51fc (patch) | |
tree | 81966be2fe14d4a6a489c81029a03a66534ea5e4 /chrome/common/sandbox_policy.cc | |
parent | 5dc6e5c358d5ee756e7fdac33cd257e7b17d94e3 (diff) | |
download | chromium_src-11c2688a90c8626c77e4855d601d9e7b180e51fc.zip chromium_src-11c2688a90c8626c77e4855d601d9e7b180e51fc.tar.gz chromium_src-11c2688a90c8626c77e4855d601d9e7b180e51fc.tar.bz2 |
Convert LOG(INFO) to VLOG(1) - chrome/common/.
This also removes LOG_RESOURCE_REQUESTS and all associated code.
Also remove some "using"s, fix non-const ref (style violation), remove some "else" after "return", and remove some extra {}s.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3941001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63462 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/sandbox_policy.cc')
-rw-r--r-- | chrome/common/sandbox_policy.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/sandbox_policy.cc b/chrome/common/sandbox_policy.cc index a5667af..f97da8a 100644 --- a/chrome/common/sandbox_policy.cc +++ b/chrome/common/sandbox_policy.cc @@ -173,7 +173,7 @@ void AddDllEvictionPolicy(sandbox::TargetPolicy* policy) { // To minimize the list we only add an unload policy if the dll is also // loaded in this process. All the injected dlls of interest do this. if (::GetModuleHandleW(kTroublesomeDlls[ix])) { - LOG(INFO) << "dll to unload found: " << kTroublesomeDlls[ix]; + VLOG(1) << "dll to unload found: " << kTroublesomeDlls[ix]; policy->AddDllToUnload(kTroublesomeDlls[ix]); } } |