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

Unified Diff: chrome/common/importer/ie_importer_utils_win.cc

Issue 1465853002: Implement support for importing favorites from Edge on Windows 10. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added missing include files Created 5 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/importer/ie_importer_utils_win.cc
diff --git a/chrome/common/importer/ie_importer_utils_win.cc b/chrome/common/importer/ie_importer_utils_win.cc
index 4275a8e4b08af146183ff602602d7c2aeee601f3..726e5b0166870a3f5e23cac14bb12b1591599b59 100644
--- a/chrome/common/importer/ie_importer_utils_win.cc
+++ b/chrome/common/importer/ie_importer_utils_win.cc
@@ -4,7 +4,7 @@
#include "chrome/common/importer/ie_importer_utils_win.h"
-#include "chrome/common/importer/ie_importer_test_registry_overrider_win.h"
+#include "chrome/common/importer/importer_test_registry_overrider_win.h"
namespace {
@@ -21,7 +21,7 @@ const base::char16 kIESettingsMainKey[] =
base::string16 GetPotentiallyOverridenIEKey(
const base::string16& desired_key_path) {
base::string16 test_reg_override(
- IEImporterTestRegistryOverrider::GetTestRegistryOverride());
+ ImporterTestRegistryOverrider::GetTestRegistryOverride());
return test_reg_override.empty() ? desired_key_path : test_reg_override;
}

Powered by Google App Engine
This is Rietveld 408576698