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

Side by Side Diff: webkit/fileapi/obfuscated_file_util.h

Issue 6286038: Add initial code to do filename munging in the FileSystem.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef WEBKIT_FILEAPI_OBFUSCATED_FILE_UTIL_H_
6 #define WEBKIT_FILEAPI_OBFUSCATED_FILE_UTIL_H_
7
8 #include "base/file_path.h"
9 #include "base/platform_file.h"
10
11 namespace base {
12 class Time; // For TouchFile TODO remove comment when it's in.
13 }
14
15 namespace obfuscated_file_util {
michaeln 2011/02/11 00:03:34 i don't think we generally use namespaces for this
ericu 2011/02/11 01:57:47 This matches base::file_util. If I dump this all
16
17 using base::PlatformFile;
18 using base::PlatformFileError;
19
20 PlatformFile CreateOrOpen(
21 const FilePath& root_path,
22 const FilePath& virtual_path,
23 int file_flags,
24 bool *created,
25 PlatformFileError* error);
26 void CreateDirectory(
27 const FilePath& root_path,
28 const FilePath& virtual_path,
29 bool exclusive_,
30 PlatformFileError* error);
31 }
32
33 #endif // WEBKIT_FILEAPI_OBFUSCATED_FILE_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698