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

Unified Diff: net/url_request/view_cache_helper.h

Issue 6730034: Remove all "net::" prefixes under net/url_request for code that's (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed indentation Created 9 years, 9 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 | « net/url_request/url_request_unittest.cc ('k') | net/url_request/view_cache_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/view_cache_helper.h
diff --git a/net/url_request/view_cache_helper.h b/net/url_request/view_cache_helper.h
index 1952916121c608d6084e3304d382c61b87dbda66..4297a003dbe35676828d66ae841ef69ee5908c4c 100644
--- a/net/url_request/view_cache_helper.h
+++ b/net/url_request/view_cache_helper.h
@@ -30,7 +30,7 @@ class ViewCacheHelper {
// operation completes. |out| must remain valid until this operation completes
// or the object is destroyed.
int GetEntryInfoHTML(const std::string& key,
- net::URLRequestContext* context,
+ URLRequestContext* context,
std::string* out,
CompletionCallback* callback);
@@ -39,7 +39,7 @@ class ViewCacheHelper {
// operation completes. |out| must remain valid until this operation completes
// or the object is destroyed. |url_prefix| will be prepended to each entry
// key as a link to the entry.
- int GetContentsHTML(net::URLRequestContext* context,
+ int GetContentsHTML(URLRequestContext* context,
const std::string& url_prefix,
std::string* out,
CompletionCallback* callback);
@@ -61,7 +61,7 @@ class ViewCacheHelper {
// Implements GetEntryInfoHTML and GetContentsHTML.
int GetInfoHTML(const std::string& key,
- net::URLRequestContext* context,
+ URLRequestContext* context,
const std::string& url_prefix,
std::string* out,
CompletionCallback* callback);
@@ -93,11 +93,11 @@ class ViewCacheHelper {
// Called to signal completion of asynchronous IO.
void OnIOComplete(int result);
- scoped_refptr<net::URLRequestContext> context_;
+ scoped_refptr<URLRequestContext> context_;
disk_cache::Backend* disk_cache_;
disk_cache::Entry* entry_;
void* iter_;
- scoped_refptr<net::IOBuffer> buf_;
+ scoped_refptr<IOBuffer> buf_;
int buf_len_;
int index_;
« no previous file with comments | « net/url_request/url_request_unittest.cc ('k') | net/url_request/view_cache_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698