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

Unified Diff: net/url_request/view_cache_helper.cc

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/view_cache_helper.h ('k') | net/url_request/view_cache_helper_unittest.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.cc
diff --git a/net/url_request/view_cache_helper.cc b/net/url_request/view_cache_helper.cc
index 531b05568c74fbd5ea50a93df1b31230d5540047..8a3eaed0b89a84208ca003970870c0fb7573725b 100644
--- a/net/url_request/view_cache_helper.cc
+++ b/net/url_request/view_cache_helper.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2010 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.
@@ -20,6 +20,8 @@
#define VIEW_CACHE_TAIL \
"</table></body></html>"
+namespace net {
+
namespace {
void HexDump(const char *buf, size_t buf_len, std::string* result) {
@@ -71,8 +73,6 @@ std::string FormatEntryInfo(disk_cache::Entry* entry,
} // namespace.
-namespace net {
-
ViewCacheHelper::ViewCacheHelper()
: disk_cache_(NULL),
entry_(NULL),
@@ -213,7 +213,7 @@ int ViewCacheHelper::DoGetBackend() {
if (!context_->http_transaction_factory())
return ERR_FAILED;
- net::HttpCache* http_cache = context_->http_transaction_factory()->GetCache();
+ HttpCache* http_cache = context_->http_transaction_factory()->GetCache();
if (!http_cache)
return ERR_FAILED;
@@ -282,16 +282,16 @@ int ViewCacheHelper::DoReadResponse() {
if (!buf_len_)
return buf_len_;
- buf_ = new net::IOBuffer(buf_len_);
+ buf_ = new IOBuffer(buf_len_);
return entry_->ReadData(0, 0, buf_, buf_len_, entry_callback_);
}
int ViewCacheHelper::DoReadResponseComplete(int result) {
entry_callback_->Release();
if (result && result == buf_len_) {
- net::HttpResponseInfo response;
+ HttpResponseInfo response;
bool truncated;
- if (net::HttpCache::ParseResponseInfo(buf_->data(), buf_len_, &response,
+ if (HttpCache::ParseResponseInfo(buf_->data(), buf_len_, &response,
&truncated) &&
response.headers) {
if (truncated)
@@ -327,7 +327,7 @@ int ViewCacheHelper::DoReadData() {
if (!buf_len_)
return buf_len_;
- buf_ = new net::IOBuffer(buf_len_);
+ buf_ = new IOBuffer(buf_len_);
return entry_->ReadData(index_, 0, buf_, buf_len_, entry_callback_);
}
@@ -338,7 +338,7 @@ int ViewCacheHelper::DoReadDataComplete(int result) {
}
data_->append("</pre>");
index_++;
- if (index_ < net::HttpCache::kNumCacheEntryDataIndices) {
+ if (index_ < HttpCache::kNumCacheEntryDataIndices) {
next_state_ = STATE_READ_DATA;
} else {
data_->append(VIEW_CACHE_TAIL);
« no previous file with comments | « net/url_request/view_cache_helper.h ('k') | net/url_request/view_cache_helper_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698