Chromium Code Reviews| Index: chrome/common/extensions/file_handler_info.h |
| diff --git a/chrome/common/extensions/file_handler_info.h b/chrome/common/extensions/file_handler_info.h |
| index 159c08a8423aad3615a32d99ece36fc69d231d3b..5905ecd0240b0dfb73f05689f33bf5902f2202ac 100644 |
| --- a/chrome/common/extensions/file_handler_info.h |
| +++ b/chrome/common/extensions/file_handler_info.h |
| @@ -26,10 +26,10 @@ struct FileHandlerInfo { |
| }; |
| struct FileHandlersInfo { |
|
benwells
2014/04/24 09:54:26
Remind me again why this struct is needed. If you
jackhou1
2014/04/24 14:48:20
It'll need to hold an icon for each file type. The
|
| - explicit FileHandlersInfo(const std::vector<FileHandlerInfo>* handlers); |
| + FileHandlersInfo(); |
| ~FileHandlersInfo(); |
| - const std::vector<FileHandlerInfo>* handlers; |
| + std::vector<FileHandlerInfo> handlers; |
| }; |
| } // namespace extensions |