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 1db81048c31b0987d3ef49292d257b2a8fb058ad..2f0d9b483b314692889a2ca534bcad0811601b25 100644 |
| --- a/chrome/browser/extensions/crx_installer.h |
| +++ b/chrome/browser/extensions/crx_installer.h |
| @@ -153,6 +153,10 @@ class CrxInstaller |
| install_cause_ = install_cause; |
| } |
| + void set_page_index(int page_index) { |
| + page_index_ = page_index; |
| + } |
| + |
| private: |
| friend class ExtensionUpdaterTest; |
| @@ -239,6 +243,9 @@ class CrxInstaller |
| // ExtensionService on success, or delete it on failure. |
| scoped_refptr<const Extension> extension_; |
| + // The index of the page |extension_| will be installed to. |
|
Matt Perry
2011/08/19 18:23:09
I don't understand this comment. Could you expand
Evan Stade
2011/08/19 19:19:28
The NTP page. You can have multiple pages of apps
|
| + int page_index_; |
| + |
| // A parsed copy of the unmodified original manifest, before any |
| // transformations like localization have taken place. |
| scoped_ptr<base::DictionaryValue> original_manifest_; |