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

Unified Diff: chrome/browser/renderer_host/resource_message_filter.cc

Issue 6338002: net: Remove typedef net::URLRequestContext URLRequestContext; (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: for real Created 9 years, 11 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
Index: chrome/browser/renderer_host/resource_message_filter.cc
diff --git a/chrome/browser/renderer_host/resource_message_filter.cc b/chrome/browser/renderer_host/resource_message_filter.cc
index b8005f350b49d14f5ea84a3bc3bf5b9bb041bd02..cf6ff6be56935601e717ef9017493bd2fc901c7b 100644
--- a/chrome/browser/renderer_host/resource_message_filter.cc
+++ b/chrome/browser/renderer_host/resource_message_filter.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 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.
@@ -9,7 +9,6 @@
#include "chrome/browser/renderer_host/resource_dispatcher_host.h"
#include "chrome/common/render_messages.h"
-
ResourceMessageFilter::ResourceMessageFilter(
int child_id,
ChildProcessInfo::ProcessType process_type,
@@ -38,7 +37,7 @@ bool ResourceMessageFilter::OnMessageReceived(const IPC::Message& message,
ChromeURLRequestContext* ResourceMessageFilter::GetURLRequestContext(
uint32 request_id, ResourceType::Type resource_type) {
- URLRequestContext* rv = NULL;
+ net::URLRequestContext* rv = NULL;
if (url_request_context_override_.get()) {
rv = url_request_context_override_->GetRequestContext(
request_id, resource_type);

Powered by Google App Engine
This is Rietveld 408576698