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

Unified Diff: chrome/browser/net/url_request_tracking.h

Issue 5298008: net: Add namespace net to URLRequest and URLRequestJob classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: some chromeos fixes Created 10 years, 1 month 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/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

Powered by Google App Engine
This is Rietveld 408576698