Fix cpplint warnings

This commit is contained in:
Cheng Zhao 2015-06-17 11:34:47 +08:00
parent 1d41903779
commit c2aa7d538f
2 changed files with 7 additions and 3 deletions

View file

@ -5,6 +5,7 @@
#include "atom/browser/net/url_request_fetch_job.h"
#include <algorithm>
#include <string>
#include "atom/browser/atom_browser_context.h"
#include "base/strings/string_util.h"
@ -93,10 +94,11 @@ URLRequestFetchJob::URLRequestFetchJob(
fetcher_->SaveResponseWithWriter(make_scoped_ptr(new ResponsePiper(this)));
// Use |request|'s referrer if |referrer| is not specified.
if (referrer.empty())
if (referrer.empty()) {
fetcher_->SetReferrer(request->referrer());
else
} else {
fetcher_->SetReferrer(referrer);
}
// Use |request|'s 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()
// operation waiting for IO completion.
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()
// by URLRequestJob.

View file

@ -5,6 +5,8 @@
#ifndef 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_request_job.h"