OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "webkit/fileapi/file_system_path_manager.h" | 5 #include "webkit/fileapi/file_system_path_manager.h" |
6 | 6 |
7 #include "base/rand_util.h" | 7 #include "base/rand_util.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/memory/scoped_callback_factory.h" | |
10 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
11 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
12 #include "base/message_loop_proxy.h" | 11 #include "base/message_loop_proxy.h" |
13 #include "base/stringprintf.h" | 12 #include "base/stringprintf.h" |
14 #include "base/string_util.h" | 13 #include "base/string_util.h" |
15 #include "base/utf_string_conversions.h" | 14 #include "base/utf_string_conversions.h" |
16 #include "googleurl/src/gurl.h" | 15 #include "googleurl/src/gurl.h" |
17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFileSyste
m.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFileSyste
m.h" |
18 #include "webkit/fileapi/file_system_util.h" | 17 #include "webkit/fileapi/file_system_util.h" |
19 #include "webkit/fileapi/sandbox_mount_point_provider.h" | 18 #include "webkit/fileapi/sandbox_mount_point_provider.h" |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 } | 141 } |
143 | 142 |
144 } // namespace fileapi | 143 } // namespace fileapi |
145 | 144 |
146 COMPILE_ASSERT(int(WebFileSystem::TypeTemporary) == \ | 145 COMPILE_ASSERT(int(WebFileSystem::TypeTemporary) == \ |
147 int(fileapi::kFileSystemTypeTemporary), mismatching_enums); | 146 int(fileapi::kFileSystemTypeTemporary), mismatching_enums); |
148 COMPILE_ASSERT(int(WebFileSystem::TypePersistent) == \ | 147 COMPILE_ASSERT(int(WebFileSystem::TypePersistent) == \ |
149 int(fileapi::kFileSystemTypePersistent), mismatching_enums); | 148 int(fileapi::kFileSystemTypePersistent), mismatching_enums); |
150 COMPILE_ASSERT(int(WebFileSystem::TypeExternal) == \ | 149 COMPILE_ASSERT(int(WebFileSystem::TypeExternal) == \ |
151 int(fileapi::kFileSystemTypeExternal), mismatching_enums); | 150 int(fileapi::kFileSystemTypeExternal), mismatching_enums); |
OLD | NEW |