Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef EXTENSIONS_COMMON_EXTENSION_UTILITY_TYPES_H_ | |
| 6 #define EXTENSIONS_COMMON_EXTENSION_UTILITY_TYPES_H_ | |
| 7 | |
| 8 #include <tuple> | |
| 9 #include <vector> | |
| 10 | |
| 11 #include "base/files/file_path.h" | |
| 12 #include "third_party/skia/include/core/SkBitmap.h" | |
| 13 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h" | |
|
Devlin
2017/03/08 16:22:24
needed?
Noel Gordon
2017/03/08 17:56:09
Not sure, will check this tomorrow.
Noel Gordon
2017/03/09 15:48:44
Yeap, needed. I added documentation to the .mojom
| |
| 14 | |
| 15 using DecodedImages = std::vector<std::tuple<SkBitmap, base::FilePath>>; | |
| 16 | |
| 17 #endif // EXTENSIONS_COMMON_EXTENSION_UTILITY_TYPES_H_ | |
| OLD | NEW |