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

Unified Diff: chrome/browser/sessions/chrome_serialized_navigation_driver.cc

Issue 2770913003: MD Settings: fix session restore when the MaterialDesignSettings feature changes across restarts (Closed)
Patch Set: Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sessions/chrome_serialized_navigation_driver.cc
diff --git a/chrome/browser/sessions/chrome_serialized_navigation_driver.cc b/chrome/browser/sessions/chrome_serialized_navigation_driver.cc
index 04d5b78cd235691146a2e97182ea1b0d96013d04..9f808f530acdb13a3d0578c6b3ab07df260715cd 100644
--- a/chrome/browser/sessions/chrome_serialized_navigation_driver.cc
+++ b/chrome/browser/sessions/chrome_serialized_navigation_driver.cc
@@ -20,7 +20,9 @@ namespace {
bool IsUberOrUberReplacementURL(const GURL& url) {
return url.SchemeIs(content::kChromeUIScheme) &&
(url.host_piece() == chrome::kChromeUIHistoryHost ||
- url.host_piece() == chrome::kChromeUIUberHost);
+ url.host_piece() == chrome::kChromeUIUberHost ||
+ url.host_piece() == chrome::kChromeUISettingsHost ||
+ url.host_piece() == chrome::kChromeUIHelpHost);
}
} // namespace
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698