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

Unified Diff: content/browser/fileapi/file_system_quota_client_unittest.cc

Issue 345673002: Fully qualify all references to fileapi::FileSystemType (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix FileSystemType instances I missed Created 6 years, 6 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: content/browser/fileapi/file_system_quota_client_unittest.cc
diff --git a/content/browser/fileapi/file_system_quota_client_unittest.cc b/content/browser/fileapi/file_system_quota_client_unittest.cc
index d3acb310d5fdc7cc721d7707f814351da7d5948e..65eaf57d16495198216523b45b43ff45bfba42af 100644
--- a/content/browser/fileapi/file_system_quota_client_unittest.cc
+++ b/content/browser/fileapi/file_system_quota_client_unittest.cc
@@ -22,7 +22,6 @@
using content::AsyncFileTestHelper;
using fileapi::FileSystemQuotaClient;
-using fileapi::FileSystemType;
using fileapi::FileSystemURL;
namespace content {
@@ -120,8 +119,8 @@ class FileSystemQuotaClientTest : public testing::Test {
bool CreateFileSystemDirectory(const base::FilePath& file_path,
const std::string& origin_url,
quota::StorageType storage_type) {
- FileSystemType type = fileapi::QuotaStorageTypeToFileSystemType(
- storage_type);
+ fileapi::FileSystemType type =
+ fileapi::QuotaStorageTypeToFileSystemType(storage_type);
FileSystemURL url = file_system_context_->CreateCrackedFileSystemURL(
GURL(origin_url), type, file_path);
@@ -137,8 +136,8 @@ class FileSystemQuotaClientTest : public testing::Test {
if (file_path.empty())
return false;
- FileSystemType type = fileapi::QuotaStorageTypeToFileSystemType(
- storage_type);
+ fileapi::FileSystemType type =
+ fileapi::QuotaStorageTypeToFileSystemType(storage_type);
FileSystemURL url = file_system_context_->CreateCrackedFileSystemURL(
GURL(origin_url), type, file_path);
« no previous file with comments | « content/browser/fileapi/file_system_context_unittest.cc ('k') | content/browser/fileapi/isolated_context_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698