diff options
author | adamk@chromium.org <adamk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-25 16:29:07 +0000 |
---|---|---|
committer | adamk@chromium.org <adamk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-25 16:29:07 +0000 |
commit | 8effd3f691277e168a10890127085a3bc999810f (patch) | |
tree | f249b4aa38200eeba84d5324debf1776f80253b5 /net/base/load_states.h | |
parent | 9c7ec6dd24d8774cc88232354cd15f31ed28d61d (diff) | |
download | chromium_src-8effd3f691277e168a10890127085a3bc999810f.zip chromium_src-8effd3f691277e168a10890127085a3bc999810f.tar.gz chromium_src-8effd3f691277e168a10890127085a3bc999810f.tar.bz2 |
Remove most unnecessary uses of "net::" in net/base/.
Also removes several empty and unused gtest test fixtures.
R=willchan@chromium.org
Review URL: http://codereview.chromium.org/6676134
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79411 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/load_states.h')
-rw-r--r-- | net/base/load_states.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/base/load_states.h b/net/base/load_states.h index 64b2a46..a3e5339 100644 --- a/net/base/load_states.h +++ b/net/base/load_states.h @@ -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. @@ -13,7 +13,7 @@ namespace net { enum LoadState { // This is the default state. It corresponds to a resource load that has // either not yet begun or is idle waiting for the consumer to do something - // to move things along (e.g., the consumer of an net::URLRequest may not have + // to move things along (e.g., the consumer of an URLRequest may not have // called Read yet). LOAD_STATE_IDLE, @@ -65,7 +65,7 @@ enum LoadState { // read to complete. In the case of a HTTP transaction, this corresponds to // the period after the response headers have been received and before all of // the response body has been downloaded. (NOTE: This state only applies for - // an net::URLRequest while there is an outstanding Read operation.) + // an URLRequest while there is an outstanding Read operation.) LOAD_STATE_READING_RESPONSE, }; |