diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-23 01:40:11 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-23 01:40:11 +0000 |
commit | 6a558a36f77d504f7fdf21c1e4d0ad63caa5909a (patch) | |
tree | 5b530d60155c03aabfff982db1476f2fdd4861e6 /webkit/glue/weburlloader_impl.cc | |
parent | 23866704890933c1c1b6d0eb9df33695b998fb64 (diff) | |
download | chromium_src-6a558a36f77d504f7fdf21c1e4d0ad63caa5909a.zip chromium_src-6a558a36f77d504f7fdf21c1e4d0ad63caa5909a.tar.gz chromium_src-6a558a36f77d504f7fdf21c1e4d0ad63caa5909a.tar.bz2 |
Remove GetURLForDebugging().
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/4071004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63614 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/weburlloader_impl.cc')
-rw-r--r-- | webkit/glue/weburlloader_impl.cc | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/webkit/glue/weburlloader_impl.cc b/webkit/glue/weburlloader_impl.cc index 374f1323..77fe2a8 100644 --- a/webkit/glue/weburlloader_impl.cc +++ b/webkit/glue/weburlloader_impl.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 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. @@ -293,7 +293,6 @@ class WebURLLoaderImpl::Context : public base::RefCounted<Context>, const URLRequestStatus& status, const std::string& security_info, const base::Time& completion_time); - virtual GURL GetURLForDebugging() const; private: friend class base::RefCounted<Context>; @@ -658,10 +657,6 @@ void WebURLLoaderImpl::Context::OnCompletedRequest( Release(); } -GURL WebURLLoaderImpl::Context::GetURLForDebugging() const { - return request_.url(); -} - void WebURLLoaderImpl::Context::HandleDataURL() { ResourceResponseInfo info; URLRequestStatus status; |