| Index: ios/clean/chrome/browser/model/browser_list.h
|
| diff --git a/ios/clean/chrome/browser/model/browser_list.h b/ios/clean/chrome/browser/model/browser_list.h
|
| index 184718c46db058b13a99ccf91a3379ba02126138..fe0621732f4a04081cea7313f72f810e754daea2 100644
|
| --- a/ios/clean/chrome/browser/model/browser_list.h
|
| +++ b/ios/clean/chrome/browser/model/browser_list.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef IOS_CLEAN_CHROME_BROWSER_MODEL_BROWSER_LIST_H_
|
| #define IOS_CLEAN_CHROME_BROWSER_MODEL_BROWSER_LIST_H_
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| @@ -39,8 +40,8 @@ class BrowserList : public base::SupportsUserData::Data {
|
| void CloseBrowserAtIndex(int index);
|
|
|
| private:
|
| - std::vector<std::unique_ptr<Browser>> browsers_;
|
| ios::ChromeBrowserState* browser_state_;
|
| + std::vector<std::unique_ptr<Browser>> browsers_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(BrowserList);
|
| };
|
|
|