Chromium Code Reviews| Index: webkit/common/fileapi/file_system_util.cc |
| diff --git a/webkit/common/fileapi/file_system_util.cc b/webkit/common/fileapi/file_system_util.cc |
| index a2e14c137f30b3118e44bdfb7db15e86ae517229..93c95a43854cc537774e2a899a3688d9bf38d561 100644 |
| --- a/webkit/common/fileapi/file_system_util.cc |
| +++ b/webkit/common/fileapi/file_system_util.cc |
| @@ -16,11 +16,11 @@ |
| namespace fileapi { |
| -const char kPersistentDir[] = "/persistent"; |
| -const char kTemporaryDir[] = "/temporary"; |
| -const char kIsolatedDir[] = "/isolated"; |
| -const char kExternalDir[] = "/external"; |
| -const char kTestDir[] = "/test"; |
| +const char* kPersistentDir = "/persistent"; |
|
jamesr
2013/06/10 22:07:21
this seems like a slight change for the worse - if
|
| +const char* kTemporaryDir = "/temporary"; |
| +const char* kIsolatedDir = "/isolated"; |
| +const char* kExternalDir = "/external"; |
| +const char* kTestDir = "/test"; |
| const base::FilePath::CharType VirtualPath::kRoot[] = FILE_PATH_LITERAL("/"); |
| const base::FilePath::CharType VirtualPath::kSeparator = FILE_PATH_LITERAL('/'); |