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

Unified Diff: chrome/browser/chromeos/extensions/file_manager_util.h

Issue 13779002: chromeos: Add a subdirectory "file_manager" to chrome/browser/chromeos/extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 8 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_util.h
diff --git a/chrome/browser/chromeos/extensions/file_manager_util.h b/chrome/browser/chromeos/extensions/file_manager_util.h
deleted file mode 100644
index 4c89ad00b6a1042955ef96e04b03cd5c750f79a3..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/extensions/file_manager_util.h
+++ /dev/null
@@ -1,106 +0,0 @@
-// Copyright (c) 2012 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_CHROMEOS_EXTENSIONS_FILE_MANAGER_UTIL_H_
-#define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_UTIL_H_
-
-#include <string>
-
-#include "base/files/file_path.h"
-#include "chrome/browser/google_apis/operation_registry.h"
-#include "googleurl/src/gurl.h"
-#include "ui/shell_dialogs/select_file_dialog.h"
-
-class Browser;
-class Profile;
-
-namespace base {
-class ListValue;
-}
-
-extern const char kFileBrowserDomain[];
-extern const char kFileBrowserGalleryTaskId[];
-extern const char kFileBrowserWatchTaskId[];
-
-// File manager helper methods.
-namespace file_manager_util {
-
-// Gets base file browser url.
-GURL GetFileBrowserExtensionUrl();
-GURL GetFileBrowserUrl();
-GURL GetMediaPlayerUrl();
-GURL GetVideoPlayerUrl();
-
-// Converts |full_file_path| into external filesystem: url. Returns false
-// if |full_file_path| is not managed by the external filesystem provider.
-bool ConvertFileToFileSystemUrl(Profile* profile,
- const base::FilePath& full_file_path,
- const std::string& extension_id,
- GURL* url);
-
-// Converts |full_file_path| into |relative_path| within the external provider
-// in File API. Returns false if |full_file_path| is not managed by the
-// external filesystem provider.
-bool ConvertFileToRelativeFileSystemPath(Profile* profile,
- const std::string& extension_id,
- const base::FilePath& full_file_path,
- base::FilePath* relative_path);
-
-// Gets base file browser url for.
-GURL GetFileBrowserUrlWithParams(
- ui::SelectFileDialog::Type type,
- const string16& title,
- const base::FilePath& default_virtual_path,
- const ui::SelectFileDialog::FileTypeInfo* file_types,
- int file_type_index,
- const base::FilePath::StringType& default_extension);
-
-// Get file dialog title string from its type.
-string16 GetTitleFromType(ui::SelectFileDialog::Type type);
-
-// Shows a freshly mounted removable drive.
-// If there is another File Browser instance open this call does nothing.
-// The mount event will cause file_manager.js to show the new drive in
-// the left panel, and that is all we want.
-// If there is no File Browser open, this call opens a new one pointing to
-// |path|. In this case the tab will automatically close on |path| unmount.
-void ViewRemovableDrive(const base::FilePath& path);
-
-// Opens a new window of the Files.app on the specified url using the
-// provided profile. If |profile| is null, then the default one is used.
-void OpenNewWindow(Profile* profile, const GURL& url);
-
-// Opens an action choice dialog for an external drive.
-// One of the actions is opening the File Manager. Passes |advanced_mode|
-// flag to the dialog. If it is enabled, then auto-choice gets disabled.
-void OpenActionChoiceDialog(const base::FilePath& path, bool advanced_mode);
-
-// Opens item with the default File Browser handler.
-void ViewItem(const base::FilePath& path);
-
-// Opens file browser on the folder containing the file, with the file selected.
-void ShowFileInFolder(const base::FilePath& path);
-
-// Opens file browser application.
-void OpenFileBrowser();
-
-// Executes the built-in File Manager handler or tries to open |file| directly
-// in the browser. Returns false if neither is possible.
-bool ExecuteBuiltinHandler(
- Browser* browser,
- const base::FilePath& path,
- const std::string& internal_task_id);
-
-// Checks whether a pepper plugin for |file_extension| is enabled.
-bool ShouldBeOpenedWithPlugin(Profile* profile, const char* file_extension);
-
-// Converts the vector of progress status to their JSON (Value) form.
-base::ListValue* ProgressStatusVectorToListValue(
- Profile* profile,
- const std::string& extension_id,
- const google_apis::OperationProgressStatusList& list);
-
-} // namespace file_manager_util
-
-#endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_UTIL_H_

Powered by Google App Engine
This is Rietveld 408576698