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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_UTILITY_SHELL_HANDLER_WIN_H_ 5 #ifndef CHROME_UTILITY_SHELL_HANDLER_WIN_H_
6 #define CHROME_UTILITY_SHELL_HANDLER_WIN_H_ 6 #define CHROME_UTILITY_SHELL_HANDLER_WIN_H_
7 7
8 #include <Windows.h> 8 #include <Windows.h>
9 9
10 #include <tuple>
10 #include <vector> 11 #include <vector>
11 12
12 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
13 #include "base/macros.h" 14 #include "base/macros.h"
14 #include "base/strings/string16.h" 15 #include "base/strings/string16.h"
15 #include "base/tuple.h"
16 #include "chrome/utility/utility_message_handler.h" 16 #include "chrome/utility/utility_message_handler.h"
17 17
18 namespace base { 18 namespace base {
19 class FilePath; 19 class FilePath;
20 } // namespace base 20 } // namespace base
21 21
22 typedef std::vector<base::Tuple<base::string16, base::string16>> 22 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.
23 GetOpenFileNameFilter; 23 GetOpenFileNameFilter;
24 24
25 struct ChromeUtilityMsg_GetSaveFileName_Params; 25 struct ChromeUtilityMsg_GetSaveFileName_Params;
26 26
27 // Handles requests to execute shell operations. Used to protect the browser 27 // Handles requests to execute shell operations. Used to protect the browser
28 // process from instability due to 3rd-party shell extensions. Must be invoked 28 // process from instability due to 3rd-party shell extensions. Must be invoked
29 // in a non-sandboxed utility process. 29 // in a non-sandboxed utility process.
30 class ShellHandler : public UtilityMessageHandler { 30 class ShellHandler : public UtilityMessageHandler {
31 public: 31 public:
32 ShellHandler(); 32 ShellHandler();
(...skipping 12 matching lines...) Expand all
45 const GetOpenFileNameFilter& filter, 45 const GetOpenFileNameFilter& filter,
46 const base::FilePath& initial_directory, 46 const base::FilePath& initial_directory,
47 const base::FilePath& filename); 47 const base::FilePath& filename);
48 48
49 void OnGetSaveFileName(const ChromeUtilityMsg_GetSaveFileName_Params& params); 49 void OnGetSaveFileName(const ChromeUtilityMsg_GetSaveFileName_Params& params);
50 50
51 DISALLOW_COPY_AND_ASSIGN(ShellHandler); 51 DISALLOW_COPY_AND_ASSIGN(ShellHandler);
52 }; 52 };
53 53
54 #endif // CHROME_UTILITY_SHELL_HANDLER_WIN_H_ 54 #endif // CHROME_UTILITY_SHELL_HANDLER_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698