Replace all usage of LOG(INFO) in Chromoting host with HOST_LOG to bypass the presubmit check. This won't spam the chrome output because the chromoting host code doesn't run in the chrome processes.
BUG=
Review URL: https://codereview.chromium.org/86523005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237431 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 1c1e491..9ad9cd18 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -832,7 +832,8 @@
black_list = (_EXCLUDED_PATHS +
_TEST_CODE_EXCLUDED_PATHS +
input_api.DEFAULT_BLACK_LIST +
- (r"^base[\\\/]logging\.h$",))
+ (r"^base[\\\/]logging\.h$",
+ r"^remoting[\\\/]base[\\\/]logging\.h$",))
source_file_filter = lambda x: input_api.FilterSourceFile(
x, white_list=(file_inclusion_pattern,), black_list=black_list)