Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Side by Side Diff: extensions/common/extension_utility_types.h

Issue 2697463002: Convert utility process extension Unpacker IPC to mojo (Closed)
Patch Set: Comment-only change in response to review comments. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698