From 27a112c2e8c464ddd4aed5e1f425204bb3f96d54 Mon Sep 17 00:00:00 2001 From: "tfarina@chromium.org" Date: Thu, 6 Jan 2011 04:19:30 +0000 Subject: net: Add namespace net to the remaining files under url_request directory. It just adds the 'namespace net' to these files and a typedef for them, because there are many entries to fix in one pass. They will be fixed later. BUG=64263 TEST=trybots Review URL: http://codereview.chromium.org/6056007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70592 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome_frame/plugin_url_request.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chrome_frame/plugin_url_request.h') diff --git a/chrome_frame/plugin_url_request.h b/chrome_frame/plugin_url_request.h index a39cf7d..cc9a17a 100644 --- a/chrome_frame/plugin_url_request.h +++ b/chrome_frame/plugin_url_request.h @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 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. @@ -29,7 +29,7 @@ class DECLSPEC_NOVTABLE PluginUrlRequestDelegate { // NOLINT const std::string& redirect_url, int redirect_status) = 0; virtual void OnReadComplete(int request_id, const std::string& data) = 0; virtual void OnResponseEnd(int request_id, - const URLRequestStatus& status) = 0; + const net::URLRequestStatus& status) = 0; virtual void AddPrivacyDataForUrl(const std::string& url, const std::string& policy_ref, int32 flags) {} @@ -77,7 +77,7 @@ class DECLSPEC_NOVTABLE PluginUrlRequestManager { // NOLINT ReadRequest(request_id, bytes_to_read); } - void EndUrlRequest(int request_id, const URLRequestStatus& s) { + void EndUrlRequest(int request_id, const net::URLRequestStatus& s) { EndRequest(request_id); } -- cgit v1.1