1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// This file provides miscellaneous API functions, which don't belong to
// other files.
#ifndef CHROME_BROWSER_ASH_EXTENSIONS_FILE_MANAGER_PRIVATE_API_MISC_H_
#define CHROME_BROWSER_ASH_EXTENSIONS_FILE_MANAGER_PRIVATE_API_MISC_H_
#include <memory>
#include <string>
#include <vector>
#include "base/files/file.h"
#include "base/files/file_path.h"
#include "chrome/browser/ash/extensions/file_manager/logged_extension_function.h"
#include "chrome/browser/ash/file_system_provider/provided_file_system_interface.h"
#include "chrome/common/extensions/api/file_manager_private.h"
#include "storage/browser/file_system/file_system_url.h"
namespace ash {
class RecentFile;
}
namespace crostini {
enum class CrostiniResult;
struct LinuxPackageInfo;
} // namespace crostini
namespace file_manager::util {
struct EntryDefinition;
using EntryDefinitionList = std::vector<EntryDefinition>;
} // namespace file_manager::util
namespace extensions {
// Implements the chrome.fileManagerPrivate.getPreferences method.
// Gets settings for the Files app.
class FileManagerPrivateGetPreferencesFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.getPreferences",
FILEMANAGERPRIVATE_GETPREFERENCES)
protected:
~FileManagerPrivateGetPreferencesFunction() override = default;
ResponseAction Run() override;
};
// Implements the chrome.fileManagerPrivate.setPreferences method.
// Sets settings for the Files app.
class FileManagerPrivateSetPreferencesFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.setPreferences",
FILEMANAGERPRIVATE_SETPREFERENCES)
protected:
~FileManagerPrivateSetPreferencesFunction() override = default;
ResponseAction Run() override;
};
// Implements the chrome.fileManagerPrivate.zoom method.
// Changes the zoom level of the file manager by modifying the zoom level of the
// WebContents.
// TODO(hirono): Remove this function once the zoom level change is supported
// for all apps. crbug.com/227175.
class FileManagerPrivateZoomFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.zoom", FILEMANAGERPRIVATE_ZOOM)
protected:
~FileManagerPrivateZoomFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
};
class FileManagerPrivateGetProfilesFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.getProfiles",
FILEMANAGERPRIVATE_GETPROFILES)
protected:
~FileManagerPrivateGetProfilesFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
};
// Implements the chrome.fileManagerPrivate.openInspector method.
class FileManagerPrivateOpenInspectorFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.openInspector",
FILEMANAGERPRIVATE_OPENINSPECTOR)
protected:
~FileManagerPrivateOpenInspectorFunction() override = default;
ResponseAction Run() override;
};
// Implements the chrome.fileManagerPrivate.openSettingsSubpage method.
class FileManagerPrivateOpenSettingsSubpageFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.openSettingsSubpage",
FILEMANAGERPRIVATE_OPENSETTINGSSUBPAGE)
protected:
~FileManagerPrivateOpenSettingsSubpageFunction() override = default;
ResponseAction Run() override;
};
// Implements the chrome.fileManagerPrivate.getMimeType method.
class FileManagerPrivateGetMimeTypeFunction : public LoggedExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.getMimeType",
FILEMANAGERPRIVATEINTERNAL_GETMIMETYPE)
FileManagerPrivateGetMimeTypeFunction();
protected:
~FileManagerPrivateGetMimeTypeFunction() override;
// ExtensionFunction overrides.
ResponseAction Run() override;
void OnGetMimeType(const std::string& mimeType);
};
// Implements the chrome.fileManagerPrivate.getProviders method.
class FileManagerPrivateGetProvidersFunction : public ExtensionFunction {
public:
FileManagerPrivateGetProvidersFunction();
DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.getProviders",
FILEMANAGERPRIVATE_GETPROVIDERS)
FileManagerPrivateGetProvidersFunction(
const FileManagerPrivateGetProvidersFunction&) = delete;
FileManagerPrivateGetProvidersFunction& operator=(
const FileManagerPrivateGetProvidersFunction&) = delete;
protected:
~FileManagerPrivateGetProvidersFunction() override = default;
private:
ResponseAction Run() override;
};
// Implements the chrome.fileManagerPrivate.addProvidedFileSystem method.
class FileManagerPrivateAddProvidedFileSystemFunction
: public ExtensionFunction {
public:
FileManagerPrivateAddProvidedFileSystemFunction();
DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.addProvidedFileSystem",
FILEMANAGERPRIVATE_ADDPROVIDEDFILESYSTEM)
FileManagerPrivateAddProvidedFileSystemFunction(
const FileManagerPrivateAddProvidedFileSystemFunction&) = delete;
FileManagerPrivateAddProvidedFileSystemFunction& operator=(
const FileManagerPrivateAddProvidedFileSystemFunction&) = delete;
protected:
~FileManagerPrivateAddProvidedFileSystemFunction() override = default;
private:
ResponseAction Run() override;
};
// Implements the chrome.fileManagerPrivate.configureVolume method.
class FileManagerPrivateConfigureVolumeFunction
: public LoggedExtensionFunction {
public:
FileManagerPrivateConfigureVolumeFunction();
DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.configureVolume",
FILEMANAGERPRIVATE_CONFIGUREVOLUME)
FileManagerPrivateConfigureVolumeFunction(
const FileManagerPrivateConfigureVolumeFunction&) = delete;
FileManagerPrivateConfigureVolumeFunction& operator=(
const FileManagerPrivateConfigureVolumeFunction&) = delete;
protected:
~FileManagerPrivateConfigureVolumeFunction() override = default;
private:
ResponseAction Run() override;
void OnCompleted(base::File::Error result);
};
// Implements the chrome.fileManagerPrivate.mountCrostini method.
// Starts and mounts crostini container.
class FileManagerPrivateMountCrostiniFunction : public LoggedExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.mountCrostini",
FILEMANAGERPRIVATE_MOUNTCROSTINI)
FileManagerPrivateMountCrostiniFunction();
FileManagerPrivateMountCrostiniFunction(
const FileManagerPrivateMountCrostiniFunction&) = delete;
FileManagerPrivateMountCrostiniFunction& operator=(
const FileManagerPrivateMountCrostiniFunction&) = delete;
protected:
~FileManagerPrivateMountCrostiniFunction() override;
ResponseAction Run() override;
void RestartCallback(crostini::CrostiniResult);
void MountCallback(crostini::CrostiniResult);
};
// Implements the chrome.fileManagerPrivate.importCrostiniImage method.
// Starts importing the crostini .tini image.
class FileManagerPrivateInternalImportCrostiniImageFunction
: public LoggedExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileManagerPrivateInternal.importCrostiniImage",
FILEMANAGERPRIVATEINTERNAL_IMPORTCROSTINIIMAGE)
FileManagerPrivateInternalImportCrostiniImageFunction();
FileManagerPrivateInternalImportCrostiniImageFunction(
const FileManagerPrivateInternalImportCrostiniImageFunction&) = delete;
FileManagerPrivateInternalImportCrostiniImageFunction& operator=(
const FileManagerPrivateInternalImportCrostiniImageFunction&) = delete;
protected:
~FileManagerPrivateInternalImportCrostiniImageFunction() override;
private:
ResponseAction Run() override;
std::string image_path_;
};
// Implements the chrome.fileManagerPrivate.sharePathsWithCrostini
// method. Shares specified paths.
class FileManagerPrivateInternalSharePathsWithCrostiniFunction
: public LoggedExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION(
"fileManagerPrivateInternal.sharePathsWithCrostini",
FILEMANAGERPRIVATEINTERNAL_SHAREPATHSWITHCROSTINI)
FileManagerPrivateInternalSharePathsWithCrostiniFunction() = default;
FileManagerPrivateInternalSharePathsWithCrostiniFunction(
const FileManagerPrivateInternalSharePathsWithCrostiniFunction&) = delete;
FileManagerPrivateInternalSharePathsWithCrostiniFunction& operator=(
const FileManagerPrivateInternalSharePathsWithCrostiniFunction&) = delete;
protected:
~FileManagerPrivateInternalSharePathsWithCrostiniFunction() override =
default;
private:
ResponseAction Run() override;
void SharePathsCallback(bool success, const std::string& failure_reason);
};
// Implements the chrome.fileManagerPrivate.unsharePathWithCrostini
// method. Unshares specified path.
class FileManagerPrivateInternalUnsharePathWithCrostiniFunction
: public LoggedExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION(
"fileManagerPrivateInternal.unsharePathWithCrostini",
FILEMANAGERPRIVATEINTERNAL_UNSHAREPATHWITHCROSTINI)
FileManagerPrivateInternalUnsharePathWithCrostiniFunction() = default;
FileManagerPrivateInternalUnsharePathWithCrostiniFunction(
const FileManagerPrivateInternalUnsharePathWithCrostiniFunction&) =
delete;
FileManagerPrivateInternalUnsharePathWithCrostiniFunction& operator=(
const FileManagerPrivateInternalUnsharePathWithCrostiniFunction&) =
delete;
protected:
~FileManagerPrivateInternalUnsharePathWithCrostiniFunction() override =
default;
private:
ResponseAction Run() override;
void UnsharePathCallback(bool success, const std::string& failure_reason);
};
// Implements the chrome.fileManagerPrivate.getCrostiniSharedPaths
// method. Returns list of file entries.
class FileManagerPrivateInternalGetCrostiniSharedPathsFunction
: public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION(
"fileManagerPrivateInternal.getCrostiniSharedPaths",
FILEMANAGERPRIVATEINTERNAL_GETCROSTINISHAREDPATHS)
FileManagerPrivateInternalGetCrostiniSharedPathsFunction() = default;
FileManagerPrivateInternalGetCrostiniSharedPathsFunction(
const FileManagerPrivateInternalGetCrostiniSharedPathsFunction&) = delete;
FileManagerPrivateInternalGetCrostiniSharedPathsFunction operator=(
const FileManagerPrivateInternalGetCrostiniSharedPathsFunction&) = delete;
protected:
~FileManagerPrivateInternalGetCrostiniSharedPathsFunction() override =
default;
private:
ResponseAction Run() override;
};
// Implements the chrome.fileManagerPrivate.getLinuxPackageInfo method.
// Retrieves information about a Linux package.
class FileManagerPrivateInternalGetLinuxPackageInfoFunction
: public LoggedExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileManagerPrivateInternal.getLinuxPackageInfo",
FILEMANAGERPRIVATEINTERNAL_GETLINUXPACKAGEINFO)
FileManagerPrivateInternalGetLinuxPackageInfoFunction() = default;
FileManagerPrivateInternalGetLinuxPackageInfoFunction(
const FileManagerPrivateInternalGetLinuxPackageInfoFunction&) = delete;
FileManagerPrivateInternalGetLinuxPackageInfoFunction operator=(
const FileManagerPrivateInternalGetLinuxPackageInfoFunction&) = delete;
protected:
~FileManagerPrivateInternalGetLinuxPackageInfoFunction() override = default;
private:
ResponseAction Run() override;
void OnGetLinuxPackageInfo(
const crostini::LinuxPackageInfo& linux_package_info);
};
// Implements the chrome.fileManagerPrivate.installLinuxPackage method.
// Starts installation of a Linux package.
class FileManagerPrivateInternalInstallLinuxPackageFunction
: public LoggedExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileManagerPrivateInternal.installLinuxPackage",
FILEMANAGERPRIVATEINTERNAL_INSTALLLINUXPACKAGE)
FileManagerPrivateInternalInstallLinuxPackageFunction() = default;
FileManagerPrivateInternalInstallLinuxPackageFunction(
const FileManagerPrivateInternalInstallLinuxPackageFunction&) = delete;
FileManagerPrivateInternalInstallLinuxPackageFunction operator=(
const FileManagerPrivateInternalInstallLinuxPackageFunction&) = delete;
protected:
~FileManagerPrivateInternalInstallLinuxPackageFunction() override = default;
private:
ResponseAction Run() override;
void OnInstallLinuxPackage(crostini::CrostiniResult result);
};
// Implements the chrome.fileManagerPrivate.getCustomActions method.
class FileManagerPrivateInternalGetCustomActionsFunction
: public LoggedExtensionFunction {
public:
FileManagerPrivateInternalGetCustomActionsFunction();
DECLARE_EXTENSION_FUNCTION("fileManagerPrivateInternal.getCustomActions",
FILEMANAGERPRIVATEINTERNAL_GETCUSTOMACTIONS)
FileManagerPrivateInternalGetCustomActionsFunction(
const FileManagerPrivateInternalGetCustomActionsFunction&) = delete;
FileManagerPrivateInternalGetCustomActionsFunction operator=(
const FileManagerPrivateInternalGetCustomActionsFunction&) = delete;
protected:
~FileManagerPrivateInternalGetCustomActionsFunction() override = default;
private:
ResponseAction Run() override;
void OnCompleted(const ash::file_system_provider::Actions& actions,
base::File::Error result);
};
// Implements the chrome.fileManagerPrivate.executeCustomAction method.
class FileManagerPrivateInternalExecuteCustomActionFunction
: public LoggedExtensionFunction {
public:
FileManagerPrivateInternalExecuteCustomActionFunction();
DECLARE_EXTENSION_FUNCTION("fileManagerPrivateInternal.executeCustomAction",
FILEMANAGERPRIVATEINTERNAL_EXECUTECUSTOMACTION)
FileManagerPrivateInternalExecuteCustomActionFunction(
const FileManagerPrivateInternalExecuteCustomActionFunction&) = delete;
FileManagerPrivateInternalExecuteCustomActionFunction operator=(
const FileManagerPrivateInternalExecuteCustomActionFunction&) = delete;
protected:
~FileManagerPrivateInternalExecuteCustomActionFunction() override = default;
private:
ResponseAction Run() override;
void OnCompleted(base::File::Error result);
};
// Implements the chrome.fileManagerPrivateInternal.getRecentFiles method.
class FileManagerPrivateInternalGetRecentFilesFunction
: public LoggedExtensionFunction {
public:
FileManagerPrivateInternalGetRecentFilesFunction();
DECLARE_EXTENSION_FUNCTION("fileManagerPrivateInternal.getRecentFiles",
FILEMANAGERPRIVATE_GETRECENTFILES)
FileManagerPrivateInternalGetRecentFilesFunction(
const FileManagerPrivateInternalGetRecentFilesFunction&) = delete;
FileManagerPrivateInternalGetRecentFilesFunction& operator=(
FileManagerPrivateInternalGetRecentFilesFunction&) = delete;
protected:
~FileManagerPrivateInternalGetRecentFilesFunction() override = default;
private:
ResponseAction Run() override;
void OnGetRecentFiles(
api::file_manager_private::SourceRestriction restriction,
const std::vector<ash::RecentFile>& files);
void OnConvertFileDefinitionListToEntryDefinitionList(
std::unique_ptr<file_manager::util::EntryDefinitionList>
entry_definition_list);
};
// Implements the chrome.fileManagerPrivate.isTabletModeEnabled method.
class FileManagerPrivateIsTabletModeEnabledFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.isTabletModeEnabled",
FILEMANAGERPRIVATE_ISTABLETMODEENABLED)
protected:
~FileManagerPrivateIsTabletModeEnabledFunction() override = default;
private:
ResponseAction Run() override;
};
// Implements the chrome.fileManagerPrivate.openWindow method.
class FileManagerPrivateOpenWindowFunction : public LoggedExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.openWindow",
FILEMANAGERPRIVATE_OPENWINDOW)
protected:
~FileManagerPrivateOpenWindowFunction() override = default;
private:
ResponseAction Run() override;
};
// Implements the chrome.fileManagerPrivate.sendFeedback method.
class FileManagerPrivateSendFeedbackFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.sendFeedback",
FILEMANAGERPRIVATE_SENDFEEDBACK)
protected:
~FileManagerPrivateSendFeedbackFunction() override = default;
private:
ResponseAction Run() override;
};
// Implements the chrome.fileManagerPrivate.getDeviceConnectionState method.
class FileManagerPrivateGetDeviceConnectionStateFunction
: public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.getDeviceConnectionState",
FILEMANAGERPRIVATE_GETDEVICECONNECTIONSTATE)
protected:
~FileManagerPrivateGetDeviceConnectionStateFunction() override = default;
ResponseAction Run() override;
};
} // namespace extensions
#endif // CHROME_BROWSER_ASH_EXTENSIONS_FILE_MANAGER_PRIVATE_API_MISC_H_
|