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