| Index: chrome/browser/platform_util.h
|
| diff --git a/chrome/browser/platform_util.h b/chrome/browser/platform_util.h
|
| index 81cb4b8cf0f966aa5fbae381ee140f84f9766beb..596232f0aa98100104bc06bb40f9111b991848ed 100644
|
| --- a/chrome/browser/platform_util.h
|
| +++ b/chrome/browser/platform_util.h
|
| @@ -37,7 +37,13 @@ enum OpenOperationResult {
|
| };
|
|
|
| // Type of item that is the target of the OpenItem() call.
|
| -enum OpenItemType { OPEN_FILE, OPEN_FOLDER };
|
| +enum OpenItemType {
|
| + OPEN_FILE,
|
| + OPEN_FOLDER,
|
| +#if defined(OS_LINUX)
|
| + SHOW_ITEM_IN_FOLDER
|
| +#endif
|
| +};
|
|
|
| // Callback used with OpenFile and OpenFolder.
|
| typedef base::Callback<void(OpenOperationResult)> OpenOperationCallback;
|
|
|