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

Unified Diff: chrome/browser/platform_util_mac.mm

Issue 352393002: Be explicit about target type in platform_util::OpenItem() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Catch up with changes to JSONStringValueSerializer and address CrOS comment Created 5 years, 9 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 | « chrome/browser/platform_util_linux.cc ('k') | chrome/browser/platform_util_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/platform_util_mac.mm
diff --git a/chrome/browser/platform_util_mac.mm b/chrome/browser/platform_util_mac.mm
index 15622f16ca3a51c53d94ca47adeac73e7be62609..8ce07bebf9a6ef3daeeb1e93c3ba60cf541a5220 100644
--- a/chrome/browser/platform_util_mac.mm
+++ b/chrome/browser/platform_util_mac.mm
@@ -8,6 +8,8 @@
#import <Cocoa/Cocoa.h>
#include <CoreServices/CoreServices.h>
+#include "base/bind.h"
+#include "base/files/file_util.h"
#include "base/files/file_path.h"
#include "base/logging.h"
#include "base/mac/mac_logging.h"
@@ -15,6 +17,8 @@
#import "base/mac/sdk_forward_declarations.h"
#include "base/mac/scoped_aedesc.h"
#include "base/strings/sys_string_conversions.h"
+#include "chrome/browser/platform_util_internal.h"
+#include "content/public/browser/browser_thread.h"
#include "url/gurl.h"
namespace platform_util {
@@ -27,7 +31,7 @@ void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) {
LOG(WARNING) << "NSWorkspace failed to select file " << full_path.value();
}
-void OpenItem(Profile* profile, const base::FilePath& full_path) {
+void OpenFileOnMainThread(const base::FilePath& full_path) {
DCHECK([NSThread isMainThread]);
NSString* path_string = base::SysUTF8ToNSString(full_path.value());
if (!path_string)
@@ -64,7 +68,7 @@ void OpenItem(Profile* profile, const base::FilePath& full_path) {
sizeof(finderCreatorCode), // dataSize
address.OutPointer()); // result
if (status != noErr) {
- OSSTATUS_LOG(WARNING, status) << "Could not create OpenItem() AE target";
+ OSSTATUS_LOG(WARNING, status) << "Could not create OpenFile() AE target";
return;
}
@@ -77,7 +81,7 @@ void OpenItem(Profile* profile, const base::FilePath& full_path) {
kAnyTransactionID, // transactionID
theEvent.OutPointer()); // result
if (status != noErr) {
- OSSTATUS_LOG(WARNING, status) << "Could not create OpenItem() AE event";
+ OSSTATUS_LOG(WARNING, status) << "Could not create OpenFile() AE event";
return;
}
@@ -88,7 +92,7 @@ void OpenItem(Profile* profile, const base::FilePath& full_path) {
false, // isRecord
fileList.OutPointer()); // resultList
if (status != noErr) {
- OSSTATUS_LOG(WARNING, status) << "Could not create OpenItem() AE file list";
+ OSSTATUS_LOG(WARNING, status) << "Could not create OpenFile() AE file list";
return;
}
@@ -104,11 +108,11 @@ void OpenItem(Profile* profile, const base::FilePath& full_path) {
sizeof(pathRef)); // dataSize
if (status != noErr) {
OSSTATUS_LOG(WARNING, status)
- << "Could not add file path to AE list in OpenItem()";
+ << "Could not add file path to AE list in OpenFile()";
return;
}
} else {
- LOG(WARNING) << "Could not get FSRef for path URL in OpenItem()";
+ LOG(WARNING) << "Could not get FSRef for path URL in OpenFile()";
return;
}
@@ -118,7 +122,7 @@ void OpenItem(Profile* profile, const base::FilePath& full_path) {
fileList); // theAEDesc
if (status != noErr) {
OSSTATUS_LOG(WARNING, status)
- << "Could not put the AE file list the path in OpenItem()";
+ << "Could not put the AE file list the path in OpenFile()";
return;
}
@@ -133,10 +137,32 @@ void OpenItem(Profile* profile, const base::FilePath& full_path) {
NULL); // filterProc
if (status != noErr) {
OSSTATUS_LOG(WARNING, status)
- << "Could not send AE to Finder in OpenItem()";
+ << "Could not send AE to Finder in OpenFile()";
}
}
+namespace internal {
+
+void PlatformOpenVerifiedItem(const base::FilePath& path, OpenItemType type) {
+ switch (type) {
+ case OPEN_FILE:
+ content::BrowserThread::PostTask(content::BrowserThread::UI, FROM_HERE,
+ base::Bind(&OpenFileOnMainThread, path));
+ return;
+ case OPEN_FOLDER:
+ NSString* path_string = base::SysUTF8ToNSString(path.value());
+ if (!path_string)
+ return;
+ // Note that there exists a TOCTOU race between the time that |path| was
+ // verified as being a directory and when NSWorkspace invokes Finder (or
+ // alternative) to open |path_string|.
+ [[NSWorkspace sharedWorkspace] openFile:path_string];
+ return;
+ }
+}
+
+} // namespace internal
+
void OpenExternal(Profile* profile, const GURL& url) {
DCHECK([NSThread isMainThread]);
NSString* url_string = base::SysUTF8ToNSString(url.spec());
« no previous file with comments | « chrome/browser/platform_util_linux.cc ('k') | chrome/browser/platform_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698