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

Unified Diff: content/browser/fileapi/copy_or_move_file_validator_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
« no previous file with comments | « no previous file | content/browser/fileapi/copy_or_move_operation_delegate_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/fileapi/copy_or_move_file_validator_unittest.cc
diff --git a/content/browser/fileapi/copy_or_move_file_validator_unittest.cc b/content/browser/fileapi/copy_or_move_file_validator_unittest.cc
index cdc92ce31bbd477dbbda8740e6d77bd2440b5c61..eaff4d38f54bfb20401e2f4b86d946c0f334e21d 100644
--- a/content/browser/fileapi/copy_or_move_file_validator_unittest.cc
+++ b/content/browser/fileapi/copy_or_move_file_validator_unittest.cc
@@ -24,15 +24,15 @@
using content::AsyncFileTestHelper;
using fileapi::CopyOrMoveFileValidator;
using fileapi::CopyOrMoveFileValidatorFactory;
-using fileapi::FileSystemType;
using fileapi::FileSystemURL;
namespace content {
namespace {
-const FileSystemType kNoValidatorType = fileapi::kFileSystemTypeTemporary;
-const FileSystemType kWithValidatorType = fileapi::kFileSystemTypeTest;
+const fileapi::FileSystemType kNoValidatorType =
+ fileapi::kFileSystemTypeTemporary;
+const fileapi::FileSystemType kWithValidatorType = fileapi::kFileSystemTypeTest;
void ExpectOk(const GURL& origin_url,
const std::string& name,
@@ -42,13 +42,10 @@ void ExpectOk(const GURL& origin_url,
class CopyOrMoveFileValidatorTestHelper {
public:
- CopyOrMoveFileValidatorTestHelper(
- const GURL& origin,
- FileSystemType src_type,
- FileSystemType dest_type)
- : origin_(origin),
- src_type_(src_type),
- dest_type_(dest_type) {}
+ CopyOrMoveFileValidatorTestHelper(const GURL& origin,
+ fileapi::FileSystemType src_type,
+ fileapi::FileSystemType dest_type)
+ : origin_(origin), src_type_(src_type), dest_type_(dest_type) {}
~CopyOrMoveFileValidatorTestHelper() {
file_system_context_ = NULL;
@@ -170,8 +167,8 @@ class CopyOrMoveFileValidatorTestHelper {
const GURL origin_;
- const FileSystemType src_type_;
- const FileSystemType dest_type_;
+ const fileapi::FileSystemType src_type_;
+ const fileapi::FileSystemType dest_type_;
std::string src_fsid_;
std::string dest_fsid_;
« no previous file with comments | « no previous file | content/browser/fileapi/copy_or_move_operation_delegate_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698