aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/ui/media/picasa.js
diff options
context:
space:
mode:
Diffstat (limited to 'contexts/data/lib/closure-library/closure/goog/ui/media/picasa.js')
-rw-r--r--contexts/data/lib/closure-library/closure/goog/ui/media/picasa.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/contexts/data/lib/closure-library/closure/goog/ui/media/picasa.js b/contexts/data/lib/closure-library/closure/goog/ui/media/picasa.js
index 5c917e4..06ef433 100644
--- a/contexts/data/lib/closure-library/closure/goog/ui/media/picasa.js
+++ b/contexts/data/lib/closure-library/closure/goog/ui/media/picasa.js
@@ -143,10 +143,12 @@ goog.ui.media.PicasaAlbum.newControl = function(dataModel, opt_domHelper) {
* Creates the initial DOM structure of the picasa album, which is basically a
* the flash object pointing to a flash picasa album player.
*
- * @param {goog.ui.media.Media} control The media control.
+ * @param {goog.ui.Control} c The media control.
* @return {Element} The DOM structure that represents the control.
+ * @override
*/
-goog.ui.media.PicasaAlbum.prototype.createDom = function(control) {
+goog.ui.media.PicasaAlbum.prototype.createDom = function(c) {
+ var control = /** @type {goog.ui.media.Media} */ (c);
var div = goog.ui.media.PicasaAlbum.superClass_.createDom.call(this, control);
var picasaAlbum =
@@ -167,6 +169,7 @@ goog.ui.media.PicasaAlbum.prototype.createDom = function(control) {
* Returns the CSS class to be applied to the root element of components
* rendered using this renderer.
* @return {string} Renderer-specific CSS class.
+ * @override
*/
goog.ui.media.PicasaAlbum.prototype.getCssClass = function() {
return goog.ui.media.PicasaAlbum.CSS_CLASS;