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

Side by Side Diff: chrome/browser/ui/pdf/adobe_reader_info_win.cc

Issue 390983004: Merge 281172 "Windows: Add an "Open in Adobe Reader" menu item f..." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/2062/src/
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/pdf/adobe_reader_info_win.h ('k') | chrome/browser/ui/pdf/pdf_unsupported_feature.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698