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

Side by Side Diff: webkit/fileapi/file_system_path_manager.cc

Issue 9032010: base::Bind: Remove scoped_callback_factory.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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
« no previous file with comments | « webkit/fileapi/file_system_operation.h ('k') | webkit/fileapi/file_system_quota_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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);
OLDNEW
« no previous file with comments | « webkit/fileapi/file_system_operation.h ('k') | webkit/fileapi/file_system_quota_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698