diff options
Diffstat (limited to 'chrome/common/platform_util_win.cc')
-rw-r--r-- | chrome/common/platform_util_win.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/platform_util_win.cc b/chrome/common/platform_util_win.cc index f1af709..e3cd5db 100644 --- a/chrome/common/platform_util_win.cc +++ b/chrome/common/platform_util_win.cc @@ -82,6 +82,10 @@ void ShowItemInFolder(const FilePath& full_path) { highlight, NULL); } +void OpenItem(const FilePath& full_path) { + win_util::OpenItemViaShell(full_path); +} + gfx::NativeWindow GetTopLevel(gfx::NativeView view) { return GetAncestor(view, GA_ROOT); } |