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

Unified Diff: chrome/browser/resources/file_manager/js/media/video_player.js

Issue 14316003: Fixed slide show in Files.app's gallery. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months 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
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/photo/slide_mode.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/file_manager/js/media/video_player.js
diff --git a/chrome/browser/resources/file_manager/js/media/video_player.js b/chrome/browser/resources/file_manager/js/media/video_player.js
index a36160b288d003b220d66e4595823ac0885e9492..63aca6875e6c487526d2602e56af55710b3bd966 100644
--- a/chrome/browser/resources/file_manager/js/media/video_player.js
+++ b/chrome/browser/resources/file_manager/js/media/video_player.js
@@ -51,7 +51,7 @@ function FullWindowVideoControls(
VideoControls.call(this,
controlsContainer,
onPlaybackError,
- this.toggleFullscreen_.bind(this),
+ this.toggleFullScreen_.bind(this),
videoContainer);
this.playerContainer_ = playerContainer;
@@ -109,7 +109,7 @@ FullWindowVideoControls.prototype.restorePlayState = function() {
* Toggles the full screen mode.
* @private
*/
-FullWindowVideoControls.prototype.toggleFullscreen_ = function() {
+FullWindowVideoControls.prototype.toggleFullScreen_ = function() {
util.toggleFullScreen(this.playerContainer_.ownerDocument,
!util.isFullScreen());
};
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/photo/slide_mode.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698