1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/common/extensions/api/webstore/webstore_api_constants.h"
11 // The "downloading" stage begins when the installer starts downloading modules
13 const char kInstallStageDownloading
[] = "downloading";
15 // The "installing" stage begins once all downloads are complete, and the
16 // CrxInstaller begins.
17 const char kInstallStageInstalling
[] = "installing";
19 // The method in custom_webstore_bindings.js triggered when we enter a new
20 // install stage ("downloading" or "installing").
21 const char kOnInstallStageChangedMethodName
[] = "onInstallStageChanged";
23 // The method in custom_webstore_bindings.js triggered when we update
25 const char kOnDownloadProgressMethodName
[] = "onDownloadProgress";
27 } // namespace webstore
29 } // namespace extensions