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

Unified Diff: ui/file_manager/externs/gallery_foreground.js

Issue 801533006: Add type annotations to gallery/js/gallery.js. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed unnecessary annotations. Created 6 years 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/externs/gallery_foreground.js
diff --git a/ui/file_manager/externs/gallery_foreground.js b/ui/file_manager/externs/gallery_foreground.js
new file mode 100644
index 0000000000000000000000000000000000000000..b308725bae934e61377c512a6ab041de7280732d
--- /dev/null
+++ b/ui/file_manager/externs/gallery_foreground.js
@@ -0,0 +1,25 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+/**
+ * @typedef {function(number, number, boolean)}
+ */
+ImageBuffer.DragHandler;
+
+/**
+ * BackgroundComponents.
+ * @constructor
+ * @struct
+ */
+function BackgroundComponents() {
+ /**
+ * @type {!Object.<string, string>}
+ */
+ this.stringData;
+
+ /**
+ * @type {!VolumeManager}
+ */
+ this.volumeManager;
+}

Powered by Google App Engine
This is Rietveld 408576698