blob: cd1d37211d8d08e45bbfc4f7e626e092fcebae95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NET_URL_REQUEST_URL_REQUEST_ABOUT_JOB_H_
#define NET_URL_REQUEST_URL_REQUEST_ABOUT_JOB_H_
#pragma once
#include <string>
#include "net/url_request/url_request.h"
#include "net/url_request/url_request_job.h"
class URLRequestAboutJob : public net::URLRequestJob {
public:
explicit URLRequestAboutJob(net::URLRequest* request);
virtual void Start();
virtual bool GetMimeType(std::string* mime_type) const;
static net::URLRequest::ProtocolFactory Factory;
private:
~URLRequestAboutJob();
void StartAsync();
};
#endif // NET_URL_REQUEST_URL_REQUEST_ABOUT_JOB_H_
|