2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-08-30 08:16:41 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef ATOM_BROWSER_NET_URL_REQUEST_STRING_JOB_H_
|
|
|
|
#define ATOM_BROWSER_NET_URL_REQUEST_STRING_JOB_H_
|
|
|
|
|
2013-08-30 12:02:17 +00:00
|
|
|
#include "net/url_request/url_request_simple_job.h"
|
|
|
|
|
2014-03-16 01:13:06 +00:00
|
|
|
#include <string>
|
|
|
|
|
2013-08-30 08:16:41 +00:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
class URLRequestStringJob : public net::URLRequestSimpleJob {
|
|
|
|
public:
|
|
|
|
URLRequestStringJob(net::URLRequest* request,
|
|
|
|
net::NetworkDelegate* network_delegate,
|
|
|
|
const std::string& mime_type,
|
|
|
|
const std::string& charset,
|
|
|
|
const std::string& data);
|
|
|
|
|
|
|
|
// URLRequestSimpleJob:
|
2015-01-10 01:24:36 +00:00
|
|
|
int GetData(std::string* mime_type,
|
|
|
|
std::string* charset,
|
|
|
|
std::string* data,
|
|
|
|
const net::CompletionCallback& callback) const override;
|
2013-08-30 08:16:41 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::string mime_type_;
|
|
|
|
std::string charset_;
|
|
|
|
std::string data_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(URLRequestStringJob);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_NET_URL_REQUEST_STRING_JOB_H_
|