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

Unified Diff: chrome/browser/platform_util_internal.h

Issue 352393002: Be explicit about target type in platform_util::OpenItem() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Chdir on Linux, Fix memory leak in test and address Mac comment. Created 5 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
Index: chrome/browser/platform_util_internal.h
diff --git a/chrome/browser/platform_util_internal.h b/chrome/browser/platform_util_internal.h
new file mode 100644
index 0000000000000000000000000000000000000000..413c1366755b4670bfead2d9212f11d06ede7f98
--- /dev/null
+++ b/chrome/browser/platform_util_internal.h
@@ -0,0 +1,28 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_PLATFORM_UTIL_INTERNAL_H_
+#define CHROME_BROWSER_PLATFORM_UTIL_INTERNAL_H_
+
+namespace base {
+class FilePath;
+}
+
+namespace platform_util {
+namespace internal {
+
+enum OpenItemType { OPEN_FILE, OPEN_FOLDER };
+
+// Called by platform_util.cc on desktop platforms to invoke platform specific
+// logic to open |path| using a suitable handler. |path| has been verified to be
+// of type |type|.
+void PlatformOpenVerifiedItem(const base::FilePath& path, OpenItemType type);
+
+// Prevent shell or external applications from being invoked during testing.
+void DisableShellOperationsForTesting();
+
+} // namespace internal
+} // namespace platform_util
+
+#endif // CHROME_BROWSER_PLATFORM_UTIL_INTERNAL_H_

Powered by Google App Engine
This is Rietveld 408576698