Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 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 CHROME_COMMON_IMPORTER_EDGE_IMPORTER_UTILS_WIN_H_ | |
| 6 #define CHROME_COMMON_IMPORTER_EDGE_IMPORTER_UTILS_WIN_H_ | |
| 7 | |
| 8 #include "base/files/file_path.h" | |
| 9 #include "base/strings/string16.h" | |
| 10 | |
| 11 namespace importer { | |
| 12 | |
| 13 // Returns the key to be used in HKCU to look for Edge's favorites order blob. | |
| 14 // Overridable by tests via IEImporterTestRegistryOverrider. | |
|
Ilya Sherman
2015/11/26 02:04:44
Why does the overrider have "IE" in its name, if i
forshaw
2015/11/30 12:57:58
I repurpose the IE registry overrider which is has
Ilya Sherman
2015/12/01 07:31:18
I think it might be useful to rename the class. F
| |
| 15 base::string16 GetEdgeFavoritesOrderKey(); | |
| 16 | |
| 17 // Returns the key to be used in HKCU to look for Edge's settings. | |
| 18 // Overridable by tests via IEImporterTestRegistryOverrider. | |
| 19 base::string16 GetEdgeSettingsKey(); | |
| 20 | |
| 21 // Returns the data path for the Edge browser. Returns an empty path on error. | |
| 22 base::FilePath GetEdgeDataFilePath(); | |
| 23 | |
| 24 // Returns true if Edge favorites is current in legacy (pre-Edge 13) mode. | |
|
Ilya Sherman
2015/11/26 02:04:44
nit: "current in" -> "currently in"?
forshaw
2015/11/30 12:57:58
Acknowledged.
| |
| 25 bool IsEdgeFavoritesLegacyMode(); | |
| 26 | |
| 27 // Returns true if the Edge browser is installed and available for import. | |
| 28 bool EdgeImporterCanImport(); | |
| 29 | |
| 30 } // namespace importer | |
| 31 | |
| 32 #endif // CHROME_COMMON_IMPORTER_EDGE_IMPORTER_UTILS_WIN_H_ | |
| OLD | NEW |