diff options
author | tzik <tzik@chromium.org> | 2016-03-08 16:51:45 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-09 00:52:59 +0000 |
commit | b2f765b6545e69fa91c275bd76cc7386b29892de (patch) | |
tree | e0e9a90a5aa98fce61cdbe68986a88a048be2e6e /extensions/common | |
parent | 1e43e0d8e6dc2ec7c73a2587d21c079663e89159 (diff) | |
download | chromium_src-b2f765b6545e69fa91c275bd76cc7386b29892de.zip chromium_src-b2f765b6545e69fa91c275bd76cc7386b29892de.tar.gz chromium_src-b2f765b6545e69fa91c275bd76cc7386b29892de.tar.bz2 |
Replace base::Tuple in //extensions with std::tuple
BUG=554987
Review URL: https://codereview.chromium.org/1773593004
Cr-Commit-Position: refs/heads/master@{#380001}
Diffstat (limited to 'extensions/common')
-rw-r--r-- | extensions/common/extension_utility_messages.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extensions/common/extension_utility_messages.h b/extensions/common/extension_utility_messages.h index 24df23f..28b9c0a 100644 --- a/extensions/common/extension_utility_messages.h +++ b/extensions/common/extension_utility_messages.h @@ -5,6 +5,7 @@ // Multiply-included message file, so no include guard. #include <string> +#include <tuple> #include "extensions/common/update_manifest.h" #include "ipc/ipc_message_macros.h" @@ -17,7 +18,7 @@ #ifndef EXTENSIONS_COMMON_EXTENSION_UTILITY_MESSAGES_H_ #define EXTENSIONS_COMMON_EXTENSION_UTILITY_MESSAGES_H_ -typedef std::vector<base::Tuple<SkBitmap, base::FilePath>> DecodedImages; +using DecodedImages = std::vector<std::tuple<SkBitmap, base::FilePath>>; #endif // EXTENSIONS_COMMON_EXTENSION_UTILITY_MESSAGES_H_ |