Chromium Code Reviews| Index: chrome/browser/extensions/crx_installer.h |
| diff --git a/chrome/browser/extensions/crx_installer.h b/chrome/browser/extensions/crx_installer.h |
| index 7facb81659e1ed0bd12037a9e4361866aaca0510..e2b389284bda6b18d5f7a8823445bed6d29be597 100644 |
| --- a/chrome/browser/extensions/crx_installer.h |
| +++ b/chrome/browser/extensions/crx_installer.h |
| @@ -110,9 +110,6 @@ class CrxInstaller |
| int creation_flags() const { return creation_flags_; } |
| void set_creation_flags(int val) { creation_flags_ = val; } |
| - const GURL& download_url() const { return download_url_; } |
| - void set_download_url(const GURL& val) { download_url_ = val; } |
| - |
| const base::FilePath& source_file() const { return source_file_; } |
| Manifest::Location install_source() const { |
| @@ -146,14 +143,6 @@ class CrxInstaller |
| creation_flags_ &= ~Extension::FROM_WEBSTORE; |
| } |
| - // The original download URL should be set when the WebstoreInstaller is |
| - // tracking the installation. The WebstoreInstaller uses this URL to match |
| - // failure notifications to the extension. |
| - const GURL& original_download_url() const { return original_download_url_; } |
| - void set_original_download_url(const GURL& url) { |
| - original_download_url_ = url; |
| - } |
| - |
| // If |apps_require_extension_mime_type_| is set to true, be sure to set |
| // |original_mime_type_| as well. |
| void set_apps_require_extension_mime_type( |
| @@ -313,8 +302,8 @@ class CrxInstaller |
| // to false. |
| bool delete_source_; |
| - // The download URL, before redirects, if this is a gallery install. |
| - GURL original_download_url_; |
| + // The download ID, if this is a gallery install. |
| + uint32 download_id_; |
|
asargent_no_longer_on_chrome
2014/04/16 00:15:51
Did you accidentally leave this in? It doesn't loo
msimonides
2014/04/16 08:42:04
Done.
|
| // Whether to create an app shortcut after successful installation. This is |
| // set based on the user's selection in the UI and can only ever be true for |