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

Unified Diff: net/ftp/ftp_server_type_histograms.h

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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/ftp/ftp_response_info.cc ('k') | net/ftp/ftp_server_type_histograms.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ftp/ftp_server_type_histograms.h
diff --git a/net/ftp/ftp_server_type_histograms.h b/net/ftp/ftp_server_type_histograms.h
deleted file mode 100644
index 5ae862cd21abe300b24dc3f8ee9e1be552f2ade1..0000000000000000000000000000000000000000
--- a/net/ftp/ftp_server_type_histograms.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// Copyright (c) 2009 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.
-
-#ifndef NET_FTP_FTP_SERVER_TYPE_HISTOGRAMS_H_
-#define NET_FTP_FTP_SERVER_TYPE_HISTOGRAMS_H_
-
-// The UpdateFtpServerTypeHistograms function collects statistics related
-// to the types of FTP servers that our users are encountering.
-
-namespace net {
-
-enum FtpServerType {
- // Record cases in which we couldn't parse the server's response. That means
- // a server type we don't recognize, a security attack (when what we're
- // connecting to isn't an FTP server), or a broken server.
- SERVER_UNKNOWN = 0,
-
- SERVER_LS = 1, // Server using /bin/ls -l listing style.
- SERVER_WINDOWS = 2, // Server using Windows listing style.
- SERVER_VMS = 3, // Server using VMS listing style.
- SERVER_NETWARE = 4, // Server using Netware listing style.
- SERVER_OS2 = 5, // Server using OS/2 listing style.
-
- NUM_OF_SERVER_TYPES
-};
-
-void UpdateFtpServerTypeHistograms(FtpServerType type);
-
-} // namespace net
-
-#endif // NET_FTP_FTP_SERVER_TYPE_HISTOGRAMS_H_
« no previous file with comments | « net/ftp/ftp_response_info.cc ('k') | net/ftp/ftp_server_type_histograms.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698