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

Unified Diff: components/chrome_apps/webstore_widget/cws_widget/app_installer.js

Issue 2805853002: Compile suggest_app_dialog in gyp v2 (Closed)
Patch Set: Fix unit test. Created 3 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
Index: components/chrome_apps/webstore_widget/cws_widget/app_installer.js
diff --git a/components/chrome_apps/webstore_widget/cws_widget/app_installer.js b/components/chrome_apps/webstore_widget/cws_widget/app_installer.js
index 2eb321665b49babed3611c959f8a05151aa50d26..5179345fadff891785b4840704af259e57e7dc55 100644
--- a/components/chrome_apps/webstore_widget/cws_widget/app_installer.js
+++ b/components/chrome_apps/webstore_widget/cws_widget/app_installer.js
@@ -6,13 +6,13 @@
* Manage the installation of apps.
*
* @param {string} itemId Item id to be installed.
- * @param {!CWSWidgetContainer.PlatformDelegate} delegate Delegate for accessing
+ * @param {!CWSWidgetContainerPlatformDelegate} delegate Delegate for accessing
* Chrome platform APIs.
* @constructor
* @struct
*/
function AppInstaller(itemId, delegate) {
- /** @private {!CWSWidgetContainer.PlatformDelegate} */
+ /** @private {!CWSWidgetContainerPlatformDelegate} */
this.delegate_ = delegate;
this.itemId_ = itemId;
this.callback_ = null;

Powered by Google App Engine
This is Rietveld 408576698