Index: chrome/browser/resources/options/chromeos/display_options.js |
diff --git a/chrome/browser/resources/options/chromeos/display_options.js b/chrome/browser/resources/options/chromeos/display_options.js |
index 55275728328db9bd945e230004e7ced12c551cd3..df1e0f26b475fc0aab10855868cbca448e9b52c2 100644 |
--- a/chrome/browser/resources/options/chromeos/display_options.js |
+++ b/chrome/browser/resources/options/chromeos/display_options.js |
@@ -590,12 +590,6 @@ cr.define('options', function() { |
display.div.style.height = newHeight + 'px'; |
display.nameContainer.style.marginTop = |
(newHeight - display.nameContainer.offsetHeight) / 2 + 'px'; |
- if (display.isPrimary) { |
- var launcher = display.div.firstChild; |
- if (launcher && launcher.id == 'display-launcher') { |
- launcher.style.width = display.div.style.width; |
- } |
- } |
}, |
/** |
@@ -697,11 +691,6 @@ cr.define('options', function() { |
div.classList.add('displays-focused'); |
if (display.isPrimary) { |
- // Put a grey rectangle to the primary display to denote launcher |
- // below. |
- var launcher = document.createElement('div'); |
- launcher.id = 'display-launcher'; |
- div.appendChild(launcher); |
this.primaryDisplay_ = display; |
} else { |
this.secondaryDisplay_ = display; |