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

Unified Diff: chrome_frame/plugin_url_request.h

Issue 6056007: net: Add namespace net to the remaining files under url_request directory. (Closed)
Patch Set: chromeos fixes Created 9 years, 12 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
« no previous file with comments | « chrome_frame/npapi_url_request.h ('k') | chrome_frame/test/automation_client_mock.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/plugin_url_request.h
diff --git a/chrome_frame/plugin_url_request.h b/chrome_frame/plugin_url_request.h
index a39cf7de6bb65b40d22b9dadf774fe24e8b9cf96..cc9a17a22789b442f191c2353be64c4155d3bb4b 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);
}
« no previous file with comments | « chrome_frame/npapi_url_request.h ('k') | chrome_frame/test/automation_client_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698