| 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;
|
|
|
|
|