diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-19 23:49:52 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-19 23:49:52 +0000 |
commit | 6504ccb162e1fa1776cf20c466a9e9e71ada827f (patch) | |
tree | 68a4b8c6de027d51dd79a7419d8849c9d4819e9b /remoting/client/plugin/chromoting_instance.cc | |
parent | 5f2d7017a397fef6245981de1a27c72c8dc89084 (diff) | |
download | chromium_src-6504ccb162e1fa1776cf20c466a9e9e71ada827f.zip chromium_src-6504ccb162e1fa1776cf20c466a9e9e71ada827f.tar.gz chromium_src-6504ccb162e1fa1776cf20c466a9e9e71ada827f.tar.bz2 |
Convert LOG(INFO) to VLOG(1) - remoting/.
Also, remove some extra {}s and unnecessary endls.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3913001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63141 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/client/plugin/chromoting_instance.cc')
-rw-r--r-- | remoting/client/plugin/chromoting_instance.cc | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/remoting/client/plugin/chromoting_instance.cc b/remoting/client/plugin/chromoting_instance.cc index 2f61c92..3a5f2fa 100644 --- a/remoting/client/plugin/chromoting_instance.cc +++ b/remoting/client/plugin/chromoting_instance.cc @@ -61,7 +61,7 @@ bool ChromotingInstance::Init(uint32_t argc, // TODO(ajwong): See if there is a method for querying what thread we're on // from inside the pepper API. pepper_main_loop_dont_post_to_me_ = MessageLoop::current(); - LOG(INFO) << "Started ChromotingInstance::Init"; + VLOG(1) << "Started ChromotingInstance::Init"; // Start all the threads. context_.Start(); @@ -114,11 +114,8 @@ void ChromotingInstance::ViewChanged(const pp::Rect& position, // TODO(ajwong): This is going to be a race condition when the view changes // and we're in the middle of a Paint(). - LOG(INFO) << "ViewChanged " - << position.x() << "," - << position.y() << "," - << position.width() << "," - << position.height(); + VLOG(1) << "ViewChanged " << position.x() << "," << position.y() << "," + << position.width() << "," << position.height(); view_->SetViewport(position.x(), position.y(), position.width(), position.height()); |