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

Unified Diff: webrtc/base/versionparsing.h

Issue 2373003002: Delete unused file versionparsing.h. (Closed)
Patch Set: Rebased. Created 4 years, 2 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 | « webrtc/base/base.gyp ('k') | webrtc/base/versionparsing.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/versionparsing.h
diff --git a/webrtc/base/versionparsing.h b/webrtc/base/versionparsing.h
deleted file mode 100644
index be2d3323813381262063860d218fbe61814338d4..0000000000000000000000000000000000000000
--- a/webrtc/base/versionparsing.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright 2004 The WebRTC Project Authors. All rights reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- */
-
-#ifndef WEBRTC_BASE_VERSIONPARSING_H_
-#define WEBRTC_BASE_VERSIONPARSING_H_
-
-#include <string>
-
-namespace rtc {
-
-// Parses a version string into an array. "num_expected_segments" must be the
-// number of numerical segments that the version is expected to have (e.g.,
-// "1.1.2.0" has 4). "version" must be an array of that length to hold the
-// parsed numbers.
-// Returns "true" iff successful.
-bool ParseVersionString(const std::string& version_str,
- int num_expected_segments,
- int version[]);
-
-// Computes the lexicographical order of two versions. The return value
-// indicates the order in the standard way (e.g., see strcmp()).
-int CompareVersions(const int version1[],
- const int version2[],
- int num_segments);
-
-} // namespace rtc
-
-#endif // WEBRTC_BASE_VERSIONPARSING_H_
« no previous file with comments | « webrtc/base/base.gyp ('k') | webrtc/base/versionparsing.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698