summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authortyoshino@chromium.org <tyoshino@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-07 07:00:37 +0000
committertyoshino@chromium.org <tyoshino@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-07 07:00:37 +0000
commitf33e687a7fa32db1d115142cd2d5aa0790d09562 (patch)
treea444f0148441f06567c034bf4fce4980be97bb81 /net
parent7dfe0e948ae218c289b34846c02f2b2dd92e36dc (diff)
downloadchromium_src-f33e687a7fa32db1d115142cd2d5aa0790d09562.zip
chromium_src-f33e687a7fa32db1d115142cd2d5aa0790d09562.tar.gz
chromium_src-f33e687a7fa32db1d115142cd2d5aa0790d09562.tar.bz2
Trivial style fix in network_delegate.h and .cc
Review URL: https://chromiumcodereview.appspot.com/14771005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@198659 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/base/network_delegate.cc6
-rw-r--r--net/base/network_delegate.h1
2 files changed, 3 insertions, 4 deletions
diff --git a/net/base/network_delegate.cc b/net/base/network_delegate.cc
index a973247..485f5bb 100644
--- a/net/base/network_delegate.cc
+++ b/net/base/network_delegate.cc
@@ -99,9 +99,9 @@ bool NetworkDelegate::CanGetCookies(const URLRequest& request,
return OnCanGetCookies(request, cookie_list);
}
- bool NetworkDelegate::CanSetCookie(const URLRequest& request,
- const std::string& cookie_line,
- CookieOptions* options) {
+bool NetworkDelegate::CanSetCookie(const URLRequest& request,
+ const std::string& cookie_line,
+ CookieOptions* options) {
DCHECK(CalledOnValidThread());
DCHECK(!(request.load_flags() & net::LOAD_DO_NOT_SAVE_COOKIES));
return OnCanSetCookie(request, cookie_line, options);
diff --git a/net/base/network_delegate.h b/net/base/network_delegate.h
index 520fb17..0d99d02 100644
--- a/net/base/network_delegate.h
+++ b/net/base/network_delegate.h
@@ -214,7 +214,6 @@ class NET_EXPORT NetworkDelegate : public base::NonThreadSafe {
const std::string& cookie_line,
CookieOptions* options) = 0;
-
// Called when a file access is attempted to allow the network delegate to
// allow or block access to the given file path. Returns true if access is
// allowed.