Fix cpplint warnings
This commit is contained in:
parent
1d41903779
commit
c2aa7d538f
2 changed files with 7 additions and 3 deletions
|
@ -5,6 +5,7 @@
|
||||||
#include "atom/browser/net/url_request_fetch_job.h"
|
#include "atom/browser/net/url_request_fetch_job.h"
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
#include "atom/browser/atom_browser_context.h"
|
#include "atom/browser/atom_browser_context.h"
|
||||||
#include "base/strings/string_util.h"
|
#include "base/strings/string_util.h"
|
||||||
|
@ -93,10 +94,11 @@ URLRequestFetchJob::URLRequestFetchJob(
|
||||||
fetcher_->SaveResponseWithWriter(make_scoped_ptr(new ResponsePiper(this)));
|
fetcher_->SaveResponseWithWriter(make_scoped_ptr(new ResponsePiper(this)));
|
||||||
|
|
||||||
// Use |request|'s referrer if |referrer| is not specified.
|
// Use |request|'s referrer if |referrer| is not specified.
|
||||||
if (referrer.empty())
|
if (referrer.empty()) {
|
||||||
fetcher_->SetReferrer(request->referrer());
|
fetcher_->SetReferrer(request->referrer());
|
||||||
else
|
} else {
|
||||||
fetcher_->SetReferrer(referrer);
|
fetcher_->SetReferrer(referrer);
|
||||||
|
}
|
||||||
|
|
||||||
// Use |request|'s headers.
|
// Use |request|'s headers.
|
||||||
net::HttpRequestHeaders headers;
|
net::HttpRequestHeaders headers;
|
||||||
|
@ -117,7 +119,7 @@ int URLRequestFetchJob::DataAvailable(net::IOBuffer* buffer, int num_bytes) {
|
||||||
// Do nothing if pending_buffer_ is empty, i.e. there's no ReadRawData()
|
// Do nothing if pending_buffer_ is empty, i.e. there's no ReadRawData()
|
||||||
// operation waiting for IO completion.
|
// operation waiting for IO completion.
|
||||||
if (!pending_buffer_.get())
|
if (!pending_buffer_.get())
|
||||||
return net::ERR_IO_PENDING;;
|
return net::ERR_IO_PENDING;
|
||||||
|
|
||||||
// pending_buffer_ is set to the IOBuffer instance provided to ReadRawData()
|
// pending_buffer_ is set to the IOBuffer instance provided to ReadRawData()
|
||||||
// by URLRequestJob.
|
// by URLRequestJob.
|
||||||
|
|
|
@ -5,6 +5,8 @@
|
||||||
#ifndef ATOM_BROWSER_NET_URL_REQUEST_FETCH_JOB_H_
|
#ifndef ATOM_BROWSER_NET_URL_REQUEST_FETCH_JOB_H_
|
||||||
#define ATOM_BROWSER_NET_URL_REQUEST_FETCH_JOB_H_
|
#define ATOM_BROWSER_NET_URL_REQUEST_FETCH_JOB_H_
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
#include "net/url_request/url_fetcher_delegate.h"
|
#include "net/url_request/url_fetcher_delegate.h"
|
||||||
#include "net/url_request/url_request_job.h"
|
#include "net/url_request/url_request_job.h"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue