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

Side by Side Diff: content/browser/indexed_db/indexed_db_quota_client.cc

Issue 14606009: Cleanup: Remove unneeded base/file_util.h includes in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 7 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/browser/indexed_db/indexed_db_quota_client.h" 5 #include "content/browser/indexed_db/indexed_db_quota_client.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/file_util.h"
10 #include "base/logging.h" 9 #include "base/logging.h"
11 #include "base/message_loop_proxy.h" 10 #include "base/message_loop_proxy.h"
12 #include "content/browser/indexed_db/indexed_db_context_impl.h" 11 #include "content/browser/indexed_db/indexed_db_context_impl.h"
13 #include "content/public/browser/browser_thread.h" 12 #include "content/public/browser/browser_thread.h"
14 #include "net/base/net_util.h" 13 #include "net/base/net_util.h"
15 #include "webkit/database/database_util.h" 14 #include "webkit/database/database_util.h"
16 15
17 using quota::QuotaClient; 16 using quota::QuotaClient;
18 using webkit_database::DatabaseUtil; 17 using webkit_database::DatabaseUtil;
19 18
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 base::PostTaskAndReplyWithResult( 168 base::PostTaskAndReplyWithResult(
170 webkit_thread_message_loop_, 169 webkit_thread_message_loop_,
171 FROM_HERE, 170 FROM_HERE,
172 base::Bind(&DeleteOriginDataOnWebKitThread, 171 base::Bind(&DeleteOriginDataOnWebKitThread,
173 indexed_db_context_, 172 indexed_db_context_,
174 origin), 173 origin),
175 callback); 174 callback);
176 } 175 }
177 176
178 } // namespace content 177 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/gpu/gpu_data_manager_impl.cc ('k') | content/browser/loader/redirect_to_file_resource_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698