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

Unified Diff: ui/base/win/open_file_name_win.h

Issue 1159553007: Move Tuple to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | « tools/ipc_fuzzer/fuzzer/fuzzer.cc ('k') | ui/base/win/open_file_name_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/win/open_file_name_win.h
diff --git a/ui/base/win/open_file_name_win.h b/ui/base/win/open_file_name_win.h
index 1a3aab54cd96d02c7ab9afd836969d2688c0514e..596b1470f5f88d1ea7228cb63e29ba83395c6555 100644
--- a/ui/base/win/open_file_name_win.h
+++ b/ui/base/win/open_file_name_win.h
@@ -34,7 +34,7 @@ class UI_BASE_EXPORT OpenFileName {
// Initializes |lpstrFilter| from the label/pattern pairs in |filters|.
void SetFilters(
- const std::vector<Tuple<base::string16, base::string16>>& filters);
+ const std::vector<base::Tuple<base::string16, base::string16>>& filters);
// Sets |lpstrInitialDir| and |lpstrFile|.
void SetInitialSelection(const base::FilePath& initial_directory,
@@ -68,7 +68,7 @@ class UI_BASE_EXPORT OpenFileName {
// Returns a vector of label/pattern pairs built from
// |openfilename->lpstrFilter|.
- static std::vector<Tuple<base::string16, base::string16>> GetFilters(
+ static std::vector<base::Tuple<base::string16, base::string16>> GetFilters(
const OPENFILENAME* openfilename);
private:
« no previous file with comments | « tools/ipc_fuzzer/fuzzer/fuzzer.cc ('k') | ui/base/win/open_file_name_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698