| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef EXTENSIONS_BROWSER_EXTERNAL_INSTALL_INFO_H_ | 5 #ifndef EXTENSIONS_BROWSER_EXTERNAL_INSTALL_INFO_H_ |
| 6 #define EXTENSIONS_BROWSER_EXTERNAL_INSTALL_INFO_H_ | 6 #define EXTENSIONS_BROWSER_EXTERNAL_INSTALL_INFO_H_ |
| 7 | 7 |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/memory/scoped_vector.h" | |
| 10 #include "extensions/common/manifest.h" | 9 #include "extensions/common/manifest.h" |
| 11 | 10 |
| 12 class GURL; | 11 class GURL; |
| 13 | 12 |
| 14 namespace base { | 13 namespace base { |
| 15 class Version; | 14 class Version; |
| 16 } | 15 } |
| 17 | 16 |
| 18 namespace extensions { | 17 namespace extensions { |
| 19 | 18 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 bool mark_acknowledged); | 57 bool mark_acknowledged); |
| 59 ~ExternalInstallInfoUpdateUrl() override; | 58 ~ExternalInstallInfoUpdateUrl() override; |
| 60 | 59 |
| 61 std::string install_parameter; | 60 std::string install_parameter; |
| 62 std::unique_ptr<GURL> update_url; | 61 std::unique_ptr<GURL> update_url; |
| 63 Manifest::Location download_location; | 62 Manifest::Location download_location; |
| 64 }; | 63 }; |
| 65 | 64 |
| 66 } // namespace extensions | 65 } // namespace extensions |
| 67 #endif // EXTENSIONS_BROWSER_EXTERNAL_INSTALL_INFO_H_ | 66 #endif // EXTENSIONS_BROWSER_EXTERNAL_INSTALL_INFO_H_ |
| OLD | NEW |