Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(488)

Side by Side Diff: net/base/network_delegate.cc

Issue 10541046: Adds NetworkDelegate::NotifyBeforeSocketStreamConnect() (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix compile error Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/base/network_delegate.h" 5 #include "net/base/network_delegate.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "net/base/load_flags.h" 8 #include "net/base/load_flags.h"
9 #include "net/url_request/url_request.h" 9 #include "net/url_request/url_request.h"
10 10
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 DCHECK(!(request.load_flags() & net::LOAD_DO_NOT_SAVE_COOKIES)); 106 DCHECK(!(request.load_flags() & net::LOAD_DO_NOT_SAVE_COOKIES));
107 return OnCanSetCookie(request, cookie_line, options); 107 return OnCanSetCookie(request, cookie_line, options);
108 } 108 }
109 109
110 bool NetworkDelegate::CanAccessFile(const URLRequest& request, 110 bool NetworkDelegate::CanAccessFile(const URLRequest& request,
111 const FilePath& path) const { 111 const FilePath& path) const {
112 DCHECK(CalledOnValidThread()); 112 DCHECK(CalledOnValidThread());
113 return OnCanAccessFile(request, path); 113 return OnCanAccessFile(request, path);
114 } 114 }
115 115
116 int NetworkDelegate::NotifyBeforeSocketStreamConnect(
117 SocketStream* socket,
118 const CompletionCallback& callback) {
119 DCHECK(CalledOnValidThread());
120 DCHECK(socket);
121 DCHECK(!callback.is_null());
122 return OnBeforeSocketStreamConnect(socket, callback);
123 }
124
125
Joao da Silva 2012/06/07 23:18:34 Nit: one newline
bashi 2012/06/08 02:48:33 Removed.
116 } // namespace net 126 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698