| Index: chrome/browser/renderer_host/resource_request_details.h
|
| ===================================================================
|
| --- chrome/browser/renderer_host/resource_request_details.h (revision 75488)
|
| +++ chrome/browser/renderer_host/resource_request_details.h (working copy)
|
| @@ -2,70 +2,11 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -// The ResourceRequestDetails object contains additional details about a
|
| -// resource request. It copies many of the publicly accessible member variables
|
| -// of net::URLRequest, but exists on the UI thread.
|
| -
|
| #ifndef CHROME_BROWSER_RENDERER_HOST_RESOURCE_REQUEST_DETAILS_H_
|
| #define CHROME_BROWSER_RENDERER_HOST_RESOURCE_REQUEST_DETAILS_H_
|
| #pragma once
|
|
|
| -#include <string>
|
| +// TODO(jam): remove this file when all files have been converted.
|
| +#include "content/browser/renderer_host/resource_request_details.h"
|
|
|
| -#include "googleurl/src/gurl.h"
|
| -#include "net/url_request/url_request_status.h"
|
| -#include "webkit/glue/resource_type.h"
|
| -
|
| -namespace net {
|
| -class URLRequest;
|
| -} // namespace net
|
| -
|
| -// Details about a resource request notification.
|
| -class ResourceRequestDetails {
|
| - public:
|
| - ResourceRequestDetails(const net::URLRequest* request, int cert_id);
|
| -
|
| - virtual ~ResourceRequestDetails();
|
| -
|
| - const GURL& url() const { return url_; }
|
| - const GURL& original_url() const { return original_url_; }
|
| - const std::string& method() const { return method_; }
|
| - const std::string& referrer() const { return referrer_; }
|
| - bool has_upload() const { return has_upload_; }
|
| - int load_flags() const { return load_flags_; }
|
| - int origin_child_id() const { return origin_child_id_; }
|
| - const net::URLRequestStatus& status() const { return status_; }
|
| - int ssl_cert_id() const { return ssl_cert_id_; }
|
| - int ssl_cert_status() const { return ssl_cert_status_; }
|
| - ResourceType::Type resource_type() const { return resource_type_; }
|
| -
|
| - private:
|
| - GURL url_;
|
| - GURL original_url_;
|
| - std::string method_;
|
| - std::string referrer_;
|
| - bool has_upload_;
|
| - int load_flags_;
|
| - int origin_child_id_;
|
| - net::URLRequestStatus status_;
|
| - int ssl_cert_id_;
|
| - int ssl_cert_status_;
|
| - ResourceType::Type resource_type_;
|
| -};
|
| -
|
| -// Details about a redirection of a resource request.
|
| -class ResourceRedirectDetails : public ResourceRequestDetails {
|
| - public:
|
| - ResourceRedirectDetails(const net::URLRequest* request,
|
| - int cert_id,
|
| - const GURL& new_url);
|
| - virtual ~ResourceRedirectDetails();
|
| -
|
| - // The URL to which we are being redirected.
|
| - const GURL& new_url() const { return new_url_; }
|
| -
|
| - private:
|
| - GURL new_url_;
|
| -};
|
| -
|
| #endif // CHROME_BROWSER_RENDERER_HOST_RESOURCE_REQUEST_DETAILS_H_
|
|
|