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

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

Issue 18075008: IndexedDB: Switch key/value handling from vector<char> to std::string (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove C++11ism Created 7 years, 5 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_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
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
OLDNEW
« no previous file with comments | « content/browser/indexed_db/indexed_db_cleanup_on_io_error_unittest.cc ('k') | content/browser/indexed_db/indexed_db_cursor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698