diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-13 22:57:54 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-13 22:57:54 +0000 |
commit | 2a7444d52ebf39d5c3db779d75d1a1c440a9902b (patch) | |
tree | f360363df1d10e20eb4d32d41f1cfbcb3bd00e60 /chrome/browser/resources/mediaplayer.html | |
parent | 903e37906e0e0ad6c7627dabeaac1a87e6e31552 (diff) | |
download | chromium_src-2a7444d52ebf39d5c3db779d75d1a1c440a9902b.zip chromium_src-2a7444d52ebf39d5c3db779d75d1a1c440a9902b.tar.gz chromium_src-2a7444d52ebf39d5c3db779d75d1a1c440a9902b.tar.bz2 |
Clean up browser_resources.grd:
* Flatten HTML where possible
* Move resources only referenced by files in browser/resources/ into there (and out of the theme dir)
* Remove duplicate/unreferenced resources
* Remove IDs for resources that are inlined due to flattening
* Remove IDR_CHAT_MANAGER_MANIFEST but leave the files on disk (they will be moving elsewhere some time soon)
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2897015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52239 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/mediaplayer.html')
-rw-r--r-- | chrome/browser/resources/mediaplayer.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/chrome/browser/resources/mediaplayer.html b/chrome/browser/resources/mediaplayer.html index 762f356..09f7b1e 100644 --- a/chrome/browser/resources/mediaplayer.html +++ b/chrome/browser/resources/mediaplayer.html @@ -133,11 +133,11 @@ body { } .soundiconhigh { - background: url('../../app/theme/mediaplayer_vol_high.png'); + background: url('shared/images/mediaplayer_vol_high.png'); } .soundiconmuted { - background: url('../../app/theme/mediaplayer_vol_mute.png'); + background: url('shared/images/mediaplayer_vol_mute.png'); } .soundiconhigh, @@ -170,7 +170,7 @@ body { } .fullscreenicon { - background: url('../../app/theme/mediaplayer_full_screen.png'); + background: url('shared/images/mediaplayer_full_screen.png'); background-repeat: no-repeat; background-position: 6px 8px; } @@ -193,7 +193,7 @@ body { } .playicon { - background: url('../../app/theme/mediaplayer_play.png'); + background: url('shared/images/mediaplayer_play.png'); background-repeat: no-repeat; background-position: 9px 8px; } @@ -207,7 +207,7 @@ body { } .pauseicon { - background: url('../../app/theme/mediaplayer_pause.png'); + background: url('shared/images/mediaplayer_pause.png'); background-repeat: no-repeat; background-position: 9px 8px; } @@ -220,7 +220,7 @@ body { } .previcon { - background: url('../../app/theme/mediaplayer_prev.png'); + background: url('shared/images/mediaplayer_prev.png'); background-repeat: no-repeat; background-position: 6px 8px; } @@ -259,7 +259,7 @@ body { } .nexticon { - background: url('../../app/theme/mediaplayer_next.png'); + background: url('shared/images/mediaplayer_next.png'); background-repeat: no-repeat; background-position: 6px 8px; } @@ -273,7 +273,7 @@ body { } .playlisticon { - background: url('../../app/theme/mediaplayer_playlist.png'); + background: url('shared/images/mediaplayer_playlist.png'); background-repeat: no-repeat; background-position: 6px 8px; } @@ -301,7 +301,7 @@ body { </style> <script src="shared/js/local_strings.js"></script> -<script src="media_common.js"></script> +<script src="shared/js/media_common.js"></script> <script> function $(o) { |