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

Unified Diff: webkit/fileapi/obfuscated_file_util_unittest.cc

Issue 11747020: Cleanup: Remove using statements from webkit/fileapi header files. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 12 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 | « webkit/fileapi/obfuscated_file_util.cc ('k') | webkit/fileapi/sandbox_mount_point_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/obfuscated_file_util_unittest.cc
===================================================================
--- webkit/fileapi/obfuscated_file_util_unittest.cc (revision 174833)
+++ webkit/fileapi/obfuscated_file_util_unittest.cc (working copy)
@@ -4,6 +4,7 @@
#include <set>
#include <string>
+#include <vector>
#include "base/bind.h"
#include "base/file_path.h"
@@ -263,7 +264,7 @@
}
void CheckFileAndCloseHandle(
- const FileSystemURL& url, PlatformFile file_handle) {
+ const FileSystemURL& url, base::PlatformFile file_handle) {
scoped_ptr<FileSystemOperationContext> context(NewContext(NULL));
FilePath local_path;
EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->GetLocalFilePath(
@@ -282,7 +283,7 @@
if (base::kInvalidPlatformFileValue == file_handle) {
bool created = true;
- PlatformFileError error;
+ base::PlatformFileError error;
file_handle = base::CreatePlatformFile(
data_path,
base::PLATFORM_FILE_OPEN | base::PLATFORM_FILE_WRITE,
@@ -1697,7 +1698,7 @@
// CreateOrOpen, create case.
url = dir_url.WithPath(dir_url.path().AppendASCII("CreateOrOpen_file"));
- PlatformFile file_handle = base::kInvalidPlatformFileValue;
+ base::PlatformFile file_handle = base::kInvalidPlatformFileValue;
created = false;
ClearTimestamp(dir_url);
context.reset(NewContext(NULL));
« no previous file with comments | « webkit/fileapi/obfuscated_file_util.cc ('k') | webkit/fileapi/sandbox_mount_point_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698