From 6981d96328621a75557dbf843c5aab83bf4f55a3 Mon Sep 17 00:00:00 2001 From: "tfarina@chromium.org" Date: Tue, 30 Nov 2010 21:34:02 +0000 Subject: net: Remove typedef net::URLRequest URLRequest; BUG=64263 TEST=compiled locally, trybots Review URL: http://codereview.chromium.org/5384002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67762 0039d316-1c4b-4281-b951-d872f2087c98 --- base/debug/leak_tracker.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'base') diff --git a/base/debug/leak_tracker.h b/base/debug/leak_tracker.h index 9709aa1..a8ea5f4 100644 --- a/base/debug/leak_tracker.h +++ b/base/debug/leak_tracker.h @@ -24,8 +24,8 @@ // before destroying that thread, one can check that there are no remaining // instances of that class. // -// For example, to enable leak tracking for class URLRequest, start by -// adding a member variable of type LeakTracker. +// For example, to enable leak tracking for class net::URLRequest, start by +// adding a member variable of type LeakTracker. // // class URLRequest { // ... @@ -34,11 +34,11 @@ // }; // // -// Next, when we believe all instances of URLRequest have been deleted: +// Next, when we believe all instances of net::URLRequest have been deleted: // -// LeakTracker::CheckForLeaks(); +// LeakTracker::CheckForLeaks(); // -// Should the check fail (because there are live instances of URLRequest), +// Should the check fail (because there are live instances of net::URLRequest), // then the allocation callstack for each leaked instances is dumped to // the error log. // -- cgit v1.1