OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/component_updater/flash_component_installer.h" | 5 #include "chrome/browser/component_updater/flash_component_installer.h" |
6 | 6 |
7 #include <string.h> | 7 #include <string.h> |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/base_paths.h" | 11 #include "base/base_paths.h" |
12 #include "base/bind.h" | 12 #include "base/bind.h" |
13 #include "base/command_line.h" | 13 #include "base/command_line.h" |
14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
15 #include "base/file_util.h" | 15 #include "base/file_util.h" |
| 16 #include "base/files/file_enumerator.h" |
16 #include "base/files/file_path.h" | 17 #include "base/files/file_path.h" |
17 #include "base/logging.h" | 18 #include "base/logging.h" |
18 #include "base/path_service.h" | 19 #include "base/path_service.h" |
19 #include "base/string_util.h" | 20 #include "base/string_util.h" |
20 #include "base/stringprintf.h" | 21 #include "base/stringprintf.h" |
21 #include "base/strings/string_split.h" | 22 #include "base/strings/string_split.h" |
22 #include "base/utf_string_conversions.h" | 23 #include "base/utf_string_conversions.h" |
23 #include "base/values.h" | 24 #include "base/values.h" |
24 #include "base/version.h" | 25 #include "base/version.h" |
25 #include "build/build_config.h" | 26 #include "build/build_config.h" |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 // so we need to enumerate the directories to find the full path. | 89 // so we need to enumerate the directories to find the full path. |
89 // On success, |latest_dir| returns something like: | 90 // On success, |latest_dir| returns something like: |
90 // <profile>\AppData\Local\Google\Chrome\User Data\PepperFlash\10.3.44.555\. | 91 // <profile>\AppData\Local\Google\Chrome\User Data\PepperFlash\10.3.44.555\. |
91 // |latest_version| returns the corresponding version number. |older_dirs| | 92 // |latest_version| returns the corresponding version number. |older_dirs| |
92 // returns directories of all older versions. | 93 // returns directories of all older versions. |
93 bool GetPepperFlashDirectory(base::FilePath* latest_dir, | 94 bool GetPepperFlashDirectory(base::FilePath* latest_dir, |
94 Version* latest_version, | 95 Version* latest_version, |
95 std::vector<base::FilePath>* older_dirs) { | 96 std::vector<base::FilePath>* older_dirs) { |
96 base::FilePath base_dir = GetPepperFlashBaseDirectory(); | 97 base::FilePath base_dir = GetPepperFlashBaseDirectory(); |
97 bool found = false; | 98 bool found = false; |
98 file_util::FileEnumerator | 99 base::FileEnumerator |
99 file_enumerator(base_dir, false, file_util::FileEnumerator::DIRECTORIES); | 100 file_enumerator(base_dir, false, base::FileEnumerator::DIRECTORIES); |
100 for (base::FilePath path = file_enumerator.Next(); !path.value().empty(); | 101 for (base::FilePath path = file_enumerator.Next(); !path.value().empty(); |
101 path = file_enumerator.Next()) { | 102 path = file_enumerator.Next()) { |
102 Version version(path.BaseName().MaybeAsASCII()); | 103 Version version(path.BaseName().MaybeAsASCII()); |
103 if (!version.IsValid()) | 104 if (!version.IsValid()) |
104 continue; | 105 continue; |
105 if (found) { | 106 if (found) { |
106 if (version.CompareTo(*latest_version) > 0) { | 107 if (version.CompareTo(*latest_version) > 0) { |
107 older_dirs->push_back(*latest_dir); | 108 older_dirs->push_back(*latest_dir); |
108 *latest_dir = path; | 109 *latest_dir = path; |
109 *latest_version = version; | 110 *latest_version = version; |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 #if defined(GOOGLE_CHROME_BUILD) && !defined(OS_LINUX) | 388 #if defined(GOOGLE_CHROME_BUILD) && !defined(OS_LINUX) |
388 // Component updated flash supersedes bundled flash therefore if that one | 389 // Component updated flash supersedes bundled flash therefore if that one |
389 // is disabled then this one should never install. | 390 // is disabled then this one should never install. |
390 CommandLine* cmd_line = CommandLine::ForCurrentProcess(); | 391 CommandLine* cmd_line = CommandLine::ForCurrentProcess(); |
391 if (cmd_line->HasSwitch(switches::kDisableBundledPpapiFlash)) | 392 if (cmd_line->HasSwitch(switches::kDisableBundledPpapiFlash)) |
392 return; | 393 return; |
393 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE, | 394 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE, |
394 base::Bind(&StartPepperFlashUpdateRegistration, cus)); | 395 base::Bind(&StartPepperFlashUpdateRegistration, cus)); |
395 #endif | 396 #endif |
396 } | 397 } |
OLD | NEW |