| Index: chrome/browser/resources/settings/about_page/about_page.js | 
| diff --git a/chrome/browser/resources/settings/about_page/about_page.js b/chrome/browser/resources/settings/about_page/about_page.js | 
| index 5cced4f7244bbf44fbb09e31de0d38cd79dc7ff1..677d7ff290eb5f8f8da6ec48bd8248019b7a4186 100644 | 
| --- a/chrome/browser/resources/settings/about_page/about_page.js | 
| +++ b/chrome/browser/resources/settings/about_page/about_page.js | 
| @@ -8,4 +8,37 @@ | 
| */ | 
| Polymer({ | 
| is: 'settings-about-page', | 
| + | 
| +  behaviors: [RoutableBehavior], | 
| + | 
| +  properties: { | 
| +    /** | 
| +     * The current active route. | 
| +     */ | 
| +    currentRoute: { | 
| +      type: Object, | 
| +      notify: true, | 
| +    }, | 
| +  }, | 
| + | 
| +  /** | 
| +   * @type {string} Selector to get the sections. | 
| +   * TODO(michaelpg): replace duplicate docs with @override once b/24294625 | 
| +   * is fixed. | 
| +   */ | 
| +  sectionSelector: 'settings-section', | 
| + | 
| +   /** @override */ | 
| +  attached: function() { | 
| +    this.scroller = this.parentElement; | 
| +  }, | 
| + | 
| +<if expr="chromeos"> | 
| +  /** @private */ | 
| +  onDetailedBuildInfoTap_: function() { | 
| +    var animatedPages = /** @type {!SettingsAnimatedPagesElement} */ ( | 
| +        this.$.pages); | 
| +    animatedPages.setSubpageChain(['detailed-build-info']); | 
| +  }, | 
| +</if> | 
| }); | 
|  |