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

Unified Diff: ui/file_manager/audio_player/js/background.js

Issue 1458733003: Reland MD Audio Player. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: forcePlay -> forceToPlay Created 5 years, 1 month 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
Index: ui/file_manager/audio_player/js/background.js
diff --git a/ui/file_manager/audio_player/js/background.js b/ui/file_manager/audio_player/js/background.js
index 600c15b9f113e09329c57a177e0c994cfbe9754b..587c08166d3fddb088154266177824ea780cff13 100644
--- a/ui/file_manager/audio_player/js/background.js
+++ b/ui/file_manager/audio_player/js/background.js
@@ -21,10 +21,13 @@ var AUDIO_PLAYER_APP_URL = 'audio_player.html';
var audioPlayerCreateOptions = {
id: 'audio-player',
type: 'panel',
- minHeight: 44 + 73, // 44px: track, 73px: controller
- minWidth: 292,
- height: 44 + 73, // collapsed
- width: 292
+ minHeight: 4 + 48 + 96, // 4px: border-top, 48px: track, 96px: controller
+ minWidth: 280,
+ height: 4 + 48 + 96, // collapsed
+ width: 280,
+ frame: {
+ color: '#fafafa'
+ }
};
/**
« no previous file with comments | « ui/file_manager/audio_player/js/audio_player.js ('k') | ui/file_manager/audio_player/js/compiled_resources.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698