OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/platform_util.h" |
| 6 |
| 7 #include <gtk/gtk.h> |
| 8 |
| 9 #include "app/gtk_util.h" |
| 10 #include "base/file_util.h" |
| 11 #include "base/process_util.h" |
| 12 #include "base/utf_string_conversions.h" |
| 13 #include "chrome/common/process_watcher.h" |
| 14 #include "googleurl/src/gurl.h" |
| 15 |
| 16 #include "chrome/browser/chrome_thread.h" |
| 17 #include "chrome/browser/browser_list.h" |
| 18 #include "chrome/browser/dom_ui/filebrowse_ui.h" |
| 19 #include "chrome/browser/dom_ui/mediaplayer_ui.h" |
| 20 |
| 21 class Profile; |
| 22 |
| 23 namespace platform_util { |
| 24 |
| 25 // TODO(estade): It would be nice to be able to select the file in the file |
| 26 // manager, but that probably requires extending xdg-open. For now just |
| 27 // show the folder. |
| 28 void ShowItemInFolder(const FilePath& full_path) { |
| 29 FilePath dir = full_path.DirName(); |
| 30 if (!file_util::DirectoryExists(dir)) |
| 31 return; |
| 32 |
| 33 Profile* profile; |
| 34 profile = BrowserList::GetLastActive()->profile(); |
| 35 |
| 36 FileBrowseUI::OpenPopup(profile, |
| 37 dir.value(), |
| 38 FileBrowseUI::kPopupWidth, |
| 39 FileBrowseUI::kPopupHeight); |
| 40 } |
| 41 |
| 42 void OpenItem(const FilePath& full_path) { |
| 43 std::string ext = full_path.Extension(); |
| 44 // For things supported natively by the browser, we should open it |
| 45 // in a tab. |
| 46 if (ext == ".jpg" || |
| 47 ext == ".jpeg" || |
| 48 ext == ".png" || |
| 49 ext == ".gif" || |
| 50 ext == ".html" || |
| 51 ext == ".htm") { |
| 52 std::string path; |
| 53 path = "file://"; |
| 54 path += full_path.value(); |
| 55 if (!ChromeThread::CurrentlyOn(ChromeThread::UI)) { |
| 56 bool result = ChromeThread::PostTask( |
| 57 ChromeThread::UI, FROM_HERE, |
| 58 NewRunnableFunction(&OpenItem, full_path)); |
| 59 DCHECK(result); |
| 60 return; |
| 61 } |
| 62 Browser* browser = BrowserList::GetLastActive(); |
| 63 browser->AddTabWithURL( |
| 64 GURL(path), GURL(), PageTransition::LINK, |
| 65 true, -1, false, NULL); |
| 66 return; |
| 67 } |
| 68 if (ext == ".avi" || |
| 69 ext == ".mp4" || |
| 70 ext == ".mp3" || |
| 71 ext == ".mkv" || |
| 72 ext == ".ogg") { |
| 73 MediaPlayer* mediaplayer = MediaPlayer::Get(); |
| 74 std::string url = "file://"; |
| 75 url += full_path.value(); |
| 76 GURL gurl(url); |
| 77 mediaplayer->EnqueueMediaURL(gurl); |
| 78 return; |
| 79 } |
| 80 } |
| 81 |
| 82 void OpenExternal(const GURL& url) { |
| 83 |
| 84 } |
| 85 |
| 86 } // namespace platform_util |
OLD | NEW |