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

Unified Diff: ui/base/win/shell.cc

Issue 12217101: Replace FilePath with base::FilePath in some more top level directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | « ui/base/ui_base_paths.cc ('k') | ui/compositor/layer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/win/shell.cc
diff --git a/ui/base/win/shell.cc b/ui/base/win/shell.cc
index c82daf0474d4a5612ed1ee0f7e0d2cf06ecd5780..7409fad26223d263bca0d60c59a983f2150f5c73 100644
--- a/ui/base/win/shell.cc
+++ b/ui/base/win/shell.cc
@@ -86,12 +86,12 @@ bool OpenAnyViaShell(const string16& full_path,
return false;
}
-bool OpenItemViaShell(const FilePath& full_path) {
+bool OpenItemViaShell(const base::FilePath& full_path) {
return OpenAnyViaShell(full_path.value(), full_path.DirName().value(),
string16(), 0);
}
-bool OpenItemViaShellNoZoneCheck(const FilePath& full_path) {
+bool OpenItemViaShellNoZoneCheck(const base::FilePath& full_path) {
return OpenAnyViaShell(full_path.value(), string16(), string16(),
SEE_MASK_NOZONECHECKS | SEE_MASK_FLAG_DDEWAIT);
}
« no previous file with comments | « ui/base/ui_base_paths.cc ('k') | ui/compositor/layer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698