Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4062)

Unified Diff: chrome/browser/renderer_host/resource_request_details.h

Issue 6532073: Move core pieces of browser\renderer_host to src\content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698