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

Unified Diff: chrome/browser/chromeos/extensions/file_manager/open_with_browser.h

Issue 23463007: file_manager: Fix a bug where hosted documents could not be opened without active browser window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 4 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/chromeos/extensions/file_manager/open_with_browser.h
diff --git a/chrome/browser/chromeos/extensions/file_manager/open_with_browser.h b/chrome/browser/chromeos/extensions/file_manager/open_with_browser.h
index dfcdc05f617d76a8bd057f22fd039df2f3a9a7a8..66e09a9df2a921f439e7bcce2f374ec6ce9ceb95 100644
--- a/chrome/browser/chromeos/extensions/file_manager/open_with_browser.h
+++ b/chrome/browser/chromeos/extensions/file_manager/open_with_browser.h
@@ -15,9 +15,10 @@ class Profile;
namespace file_manager {
namespace util {
-// Opens the file specified by |file_path| with the browser. This function takes
-// care of the following intricacies:
+// Opens the file specified by |file_path| with the browser for
+// |profile|. This function takes care of the following intricacies:
//
+// - If there is no active browser window, open it.
// - If the file is a Drive hosted document, the hosted document will be
// opened in the browser by extracting the right URL for the file.
// - If the file is a CRX file, the CRX file will be installed.
@@ -25,7 +26,7 @@ namespace util {
// needed.
//
// Returns false if failed to open. This happens if the file type is unknown.
-bool OpenFileWithBrowser(Browser* browser, const base::FilePath& file_path);
+bool OpenFileWithBrowser(Profile* profile, const base::FilePath& file_path);
// Checks whether a pepper plugin for |file_extension| is enabled.
bool ShouldBeOpenedWithPlugin(

Powered by Google App Engine
This is Rietveld 408576698