OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/ui/pdf/adobe_reader_info_win.h" | 5 #include "chrome/browser/ui/pdf/adobe_reader_info_win.h" |
6 | 6 |
7 #include <shlwapi.h> | 7 #include <shlwapi.h> |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <vector> | 10 #include <vector> |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 base::UTF16ToUTF8(file_version_info->product_version()); | 175 base::UTF16ToUTF8(file_version_info->product_version()); |
176 // Convert 1.2.03.45 to 1.2.3.45 so base::Version considers it as valid. | 176 // Convert 1.2.03.45 to 1.2.3.45 so base::Version considers it as valid. |
177 for (int i = 1; i <= 9; ++i) { | 177 for (int i = 1; i <= 9; ++i) { |
178 std::string from = base::StringPrintf(".0%d", i); | 178 std::string from = base::StringPrintf(".0%d", i); |
179 std::string to = base::StringPrintf(".%d", i); | 179 std::string to = base::StringPrintf(".%d", i); |
180 ReplaceSubstringsAfterOffset(&reader_version, 0, from, to); | 180 ReplaceSubstringsAfterOffset(&reader_version, 0, from, to); |
181 } | 181 } |
182 base::Version file_version(reader_version); | 182 base::Version file_version(reader_version); |
183 return file_version.IsValid() && !file_version.IsOlderThan(kSecureVersion); | 183 return file_version.IsValid() && !file_version.IsOlderThan(kSecureVersion); |
184 } | 184 } |
OLD | NEW |