diff options
author | abeera@google.com <abeera@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-20 02:15:22 +0000 |
---|---|---|
committer | abeera@google.com <abeera@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-20 02:15:22 +0000 |
commit | 4fa24bfa0b637b34d92432c98b318362b014c540 (patch) | |
tree | de37e3d92fa57e56178a8df0c5640c03abb61025 /chrome/common/multi_process_lock_linux.cc | |
parent | 43c9dc728d4a0c3713364487211f6a2b8dbe2f0a (diff) | |
download | chromium_src-4fa24bfa0b637b34d92432c98b318362b014c540.zip chromium_src-4fa24bfa0b637b34d92432c98b318362b014c540.tar.gz chromium_src-4fa24bfa0b637b34d92432c98b318362b014c540.tar.bz2 |
Bring out cloud print proxy from behind a flag on Linux.
BUG=NONE
TEST=The cloud print proxy is available under options on Linux without the command line flag.
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=93683
Review URL: http://codereview.chromium.org/7277018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97546 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/multi_process_lock_linux.cc')
-rw-r--r-- | chrome/common/multi_process_lock_linux.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/common/multi_process_lock_linux.cc b/chrome/common/multi_process_lock_linux.cc index ccc2186..6452e91 100644 --- a/chrome/common/multi_process_lock_linux.cc +++ b/chrome/common/multi_process_lock_linux.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -77,9 +77,9 @@ class MultiProcessLockLinux : public MultiProcessLock { fd_ = socket_fd; return true; } else { - PLOG(ERROR) << "Couldn't bind socket - " - << &(address.sun_path[1]) - << " Length: " << length; + VLOG(1) << "Couldn't bind socket - " + << &(address.sun_path[1]) + << " Length: " << length; if (HANDLE_EINTR(close(socket_fd)) < 0) { PLOG(ERROR) << "close"; } |