| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef COMPONENTS_UPDATE_CLIENT_UTILS_WIN_H_ |
| 6 #define COMPONENTS_UPDATE_CLIENT_UTILS_WIN_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 namespace update_client { |
| 11 |
| 12 // Returns a dotted quad Windows string representing the Windows OS version. |
| 13 // The format of the version string is major.minor.build-number.ubr. |
| 14 std::string GetWindowsOSVersion(); |
| 15 |
| 16 } // namespace update_client |
| 17 |
| 18 #endif // COMPONENTS_UPDATE_CLIENT_UTILS_WIN_H_ |
| OLD | NEW |