Update to Chromium revision 142910.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@703 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2012-06-22 00:10:10 +00:00
parent 65cc337f03
commit 1f42df1b61
11 changed files with 49 additions and 30 deletions

View File

@@ -104,3 +104,14 @@ bool BrowserNetworkDelegate::OnCanAccessFile(const net::URLRequest& request,
const FilePath& path) const {
return true;
}
bool BrowserNetworkDelegate::OnCanThrottleRequest(
const net::URLRequest& request) const {
return false;
}
int BrowserNetworkDelegate::OnBeforeSocketStreamConnect(
net::SocketStream* stream,
const net::CompletionCallback& callback) {
return net::OK;
}