diff options
Diffstat (limited to 'ui/base/gtk')
-rw-r--r-- | ui/base/gtk/g_object_destructor_filo.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/base/gtk/g_object_destructor_filo.cc b/ui/base/gtk/g_object_destructor_filo.cc index 592db80..9c05b98 100644 --- a/ui/base/gtk/g_object_destructor_filo.cc +++ b/ui/base/gtk/g_object_destructor_filo.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 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. @@ -51,10 +51,10 @@ void GObjectDestructorFILO::Disconnect( if (!dtors.front().equal(object, callback, context)) { // Reenable this warning once this bug is fixed: // http://code.google.com/p/chromium/issues/detail?id=85603 - VLOG(1) << "Destructors should be unregistered the reverse order they " - << "were registered. But for object " << object << " " - << "deleted hook is "<< context << ", the last queued hook is " - << dtors.front().context; + DVLOG(1) << "Destructors should be unregistered the reverse order they " + << "were registered. But for object " << object << " " + << "deleted hook is "<< context << ", the last queued hook is " + << dtors.front().context; } for (HandlerList::iterator i = dtors.begin(); i != dtors.end(); ++i) { if (i->equal(object, callback, context)) { |