| Index: chrome/browser/resources/settings/bluetooth_page/bluetooth_page.js
 | 
| diff --git a/chrome/browser/resources/settings/bluetooth_page/bluetooth_page.js b/chrome/browser/resources/settings/bluetooth_page/bluetooth_page.js
 | 
| index 6510e5472d53c2d93618dc6d7fdb38bf8588a472..3a52fbd804a064fde964443eb1570808bcc65140 100644
 | 
| --- a/chrome/browser/resources/settings/bluetooth_page/bluetooth_page.js
 | 
| +++ b/chrome/browser/resources/settings/bluetooth_page/bluetooth_page.js
 | 
| @@ -65,6 +65,18 @@ Polymer({
 | 
|        notify: true,
 | 
|      },
 | 
|  
 | 
| +    /** @private {!Map<string, string>} */
 | 
| +    focusConfig_: {
 | 
| +      type: Object,
 | 
| +      value: function() {
 | 
| +        var map = new Map();
 | 
| +        map.set(
 | 
| +            settings.Route.BLUETOOTH_DEVICES.path,
 | 
| +            '#bluetoothDevices .subpage-arrow');
 | 
| +        return map;
 | 
| +      },
 | 
| +    },
 | 
| +
 | 
|      /**
 | 
|       * Interface for bluetooth calls. May be overriden by tests.
 | 
|       * @type {Bluetooth}
 | 
| 
 |