Chromium Code Reviews| Index: chrome/browser/resources/settings/route.js |
| diff --git a/chrome/browser/resources/settings/route.js b/chrome/browser/resources/settings/route.js |
| index e987f33ed83daf70c886db7251935111323cfcbf..cc184bb727d875b09612bdb759fbf681dbe4d7d0 100644 |
| --- a/chrome/browser/resources/settings/route.js |
| +++ b/chrome/browser/resources/settings/route.js |
| @@ -199,9 +199,10 @@ cr.define('settings', function() { |
| r.RESET = r.ADVANCED.createSection('/reset', 'reset'); |
| <if expr="chromeos"> |
| - r.INPUT_METHODS = r.LANGUAGES.createChild('/inputMethods'); |
|
tommycli
2016/09/30 21:04:30
Should INPUT_METHODS actually be gone?
michaelpg
2016/09/30 21:07:15
it's a dupe (from above)
|
| - r.DETAILED_BUILD_INFO = r.ABOUT.createChild('/help/details'); |
| - r.DETAILED_BUILD_INFO.section = 'about'; |
| + // "About" is the only section in About, but we still need to create the route |
| + // in order to show the subpage on Chrome OS. |
| + r.ABOUT_ABOUT = r.ABOUT.createSection('/help/about', 'about'); |
| + r.DETAILED_BUILD_INFO = r.ABOUT_ABOUT.createChild('/help/details'); |
| </if> |
| var routeObservers_ = new Set(); |