OLD | NEW |
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_context_impl.h" | 5 #include "content/browser/indexed_db/indexed_db_context_impl.h" |
6 | 6 |
7 #include <vector> | |
8 | |
9 #include "base/bind.h" | 7 #include "base/bind.h" |
10 #include "base/command_line.h" | 8 #include "base/command_line.h" |
11 #include "base/file_util.h" | 9 #include "base/file_util.h" |
12 #include "base/files/file_enumerator.h" | 10 #include "base/files/file_enumerator.h" |
13 #include "base/logging.h" | 11 #include "base/logging.h" |
14 #include "base/sequenced_task_runner.h" | 12 #include "base/sequenced_task_runner.h" |
15 #include "base/strings/string_util.h" | 13 #include "base/strings/string_util.h" |
16 #include "base/strings/utf_string_conversions.h" | 14 #include "base/strings/utf_string_conversions.h" |
17 #include "base/threading/thread_restrictions.h" | 15 #include "base/threading/thread_restrictions.h" |
18 #include "content/browser/browser_main_loop.h" | 16 #include "content/browser/browser_main_loop.h" |
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 origin_set_.reset(); | 418 origin_set_.reset(); |
421 origin_size_map_.clear(); | 419 origin_size_map_.clear(); |
422 space_available_map_.clear(); | 420 space_available_map_.clear(); |
423 } | 421 } |
424 | 422 |
425 base::TaskRunner* IndexedDBContextImpl::TaskRunner() const { | 423 base::TaskRunner* IndexedDBContextImpl::TaskRunner() const { |
426 return task_runner_; | 424 return task_runner_; |
427 } | 425 } |
428 | 426 |
429 } // namespace content | 427 } // namespace content |
OLD | NEW |