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

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: 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
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..ea2a0b384c9f96239387174cfe942c9a571dd44a 100644
--- a/chrome/utility/shell_handler_win.h
+++ b/chrome/utility/shell_handler_win.h
@@ -7,19 +7,19 @@
#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>>
+typedef std::vector<std::tuple<base::string16, base::string16>>
danakj 2016/03/08 18:22:24 nit: using
tzik 2016/03/09 05:26:51 Done.
GetOpenFileNameFilter;
struct ChromeUtilityMsg_GetSaveFileName_Params;

Powered by Google App Engine
This is Rietveld 408576698