Index: chrome/browser/net/url_request_tracking.h |
diff --git a/chrome/browser/net/url_request_tracking.h b/chrome/browser/net/url_request_tracking.h |
index 4eb3dfd6ce4c22400c70f4c50b890852acf70b7f..0e7a715634fee952e3f2f2d4ef77a93117dd0579 100644 |
--- a/chrome/browser/net/url_request_tracking.h |
+++ b/chrome/browser/net/url_request_tracking.h |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2009 The Chromium Authors. All rights reserved. |
+// 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. |
@@ -6,7 +6,9 @@ |
#define CHROME_BROWSER_NET_URL_REQUEST_TRACKING_H_ |
#pragma once |
+namespace net { |
class URLRequest; |
+} // namespace net |
namespace chrome_browser_net { |
@@ -24,12 +26,12 @@ namespace chrome_browser_net { |
// the request. This is normally the renderer corresponding to the load. If a |
// plugin process does a request through a renderer process this will be the |
// plugin (the originator of the request). |
-void SetOriginProcessUniqueIDForRequest(int id, URLRequest* request); |
+void SetOriginProcessUniqueIDForRequest(int id, net::URLRequest* request); |
// Returns the child process' unique ID that has been previously set by |
// SetOriginProcessUniqueIDForRequest. If no ID has been set, the return |
// value is -1. We use this to identify requests made by the browser process. |
-int GetOriginProcessUniqueIDForRequest(const URLRequest* request); |
+int GetOriginProcessUniqueIDForRequest(const net::URLRequest* request); |
} // namespace chrome_browser_net |