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

Unified Diff: chrome/browser/chromeos/extensions/file_manager/file_browser_handler_api_test.cc

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 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/file_browser_handler_api_test.cc
diff --git a/chrome/browser/chromeos/extensions/file_manager/file_browser_handler_api_test.cc b/chrome/browser/chromeos/extensions/file_manager/file_browser_handler_api_test.cc
index 7a87e3d3d9351af8f654cfc2925a96dcb8305fab..bd5f5171324e74f21963b82b13207ef4e02908f2 100644
--- a/chrome/browser/chromeos/extensions/file_manager/file_browser_handler_api_test.cc
+++ b/chrome/browser/chromeos/extensions/file_manager/file_browser_handler_api_test.cc
@@ -19,8 +19,8 @@
#include "chrome/test/base/ui_test_utils.h"
#include "content/public/browser/browser_context.h"
#include "extensions/common/extension.h"
-#include "webkit/browser/fileapi/external_mount_points.h"
-#include "webkit/common/fileapi/file_system_types.h"
+#include "storage/browser/fileapi/external_mount_points.h"
+#include "storage/common/fileapi/file_system_types.h"
namespace utils = extension_function_test_utils;
@@ -171,11 +171,11 @@ class FileBrowserHandlerExtensionTest : public ExtensionApiTest {
// Creates new, test mount point.
void AddTmpMountPoint(const std::string& extension_id) {
- BrowserContext::GetMountPoints(browser()->profile())->RegisterFileSystem(
- "tmp",
- fileapi::kFileSystemTypeNativeLocal,
- fileapi::FileSystemMountOption(),
- tmp_mount_point_);
+ BrowserContext::GetMountPoints(browser()->profile())
+ ->RegisterFileSystem("tmp",
+ storage::kFileSystemTypeNativeLocal,
+ storage::FileSystemMountOption(),
+ tmp_mount_point_);
}
base::FilePath GetFullPathOnTmpMountPoint(

Powered by Google App Engine
This is Rietveld 408576698