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

Unified Diff: chrome/utility/shell_handler_win.h

Issue 1767343004: Replace base::Tuple in //chrome with std::tuple (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: s/typedef/using/ Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/translate/translate_helper_browsertest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/shell_handler_win.h
diff --git a/chrome/utility/shell_handler_win.h b/chrome/utility/shell_handler_win.h
index 63f16f4268d79cdcf1b203353c1e983c03f4a5a9..3647ed47914dd3d9e79f303f65a6e54203f0a1e9 100644
--- a/chrome/utility/shell_handler_win.h
+++ b/chrome/utility/shell_handler_win.h
@@ -7,20 +7,20 @@
#include <Windows.h>
+#include <tuple>
#include <vector>
#include "base/compiler_specific.h"
#include "base/macros.h"
#include "base/strings/string16.h"
-#include "base/tuple.h"
#include "chrome/utility/utility_message_handler.h"
namespace base {
class FilePath;
} // namespace base
-typedef std::vector<base::Tuple<base::string16, base::string16>>
- GetOpenFileNameFilter;
+using GetOpenFileNameFilter =
+ std::vector<std::tuple<base::string16, base::string16>>;
struct ChromeUtilityMsg_GetSaveFileName_Params;
« no previous file with comments | « chrome/renderer/translate/translate_helper_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698