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

Unified Diff: chrome/browser/chrome_plugin_browsing_context.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/chrome_plugin_browsing_context.cc
diff --git a/chrome/browser/chrome_plugin_browsing_context.cc b/chrome/browser/chrome_plugin_browsing_context.cc
index a252bbf18b4d1ec312987af03009b4557b71e6b8..ff20485402de65a292335545ff2c1329fdc5cb06 100644
--- a/chrome/browser/chrome_plugin_browsing_context.cc
+++ b/chrome/browser/chrome_plugin_browsing_context.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2008 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.
@@ -53,7 +53,7 @@ void CPBrowsingContextManager::Observe(NotificationType type,
net::URLRequestContext* context =
Source<net::URLRequestContext>(source).ptr();
- // Multiple CPBrowsingContexts may refer to the same URLRequestContext.
+ // Multiple CPBrowsingContexts may refer to the same net::URLRequestContext.
for (Map::iterator it(&map_); !it.IsAtEnd(); it.Advance()) {
if (it.GetCurrentValue() == context)
map_.Remove(it.GetCurrentKey());

Powered by Google App Engine
This is Rietveld 408576698