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

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

Issue 933823002: Avoid large inlined automatic methods in IndexedDB code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_backing_store.h" 5 #include "content/browser/indexed_db/indexed_db_backing_store.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/files/file_util.h" 10 #include "base/files/file_util.h"
(...skipping 4382 matching lines...) Expand 10 before | Expand all | Expand 10 after
4393 int64_t key, 4393 int64_t key,
4394 int64_t size, 4394 int64_t size,
4395 base::Time last_modified) 4395 base::Time last_modified)
4396 : is_file_(true), 4396 : is_file_(true),
4397 file_path_(file_path), 4397 file_path_(file_path),
4398 key_(key), 4398 key_(key),
4399 size_(size), 4399 size_(size),
4400 last_modified_(last_modified) { 4400 last_modified_(last_modified) {
4401 } 4401 }
4402 4402
4403 IndexedDBBackingStore::Transaction::WriteDescriptor::WriteDescriptor(
4404 const WriteDescriptor& other) = default;
4405 IndexedDBBackingStore::Transaction::WriteDescriptor::~WriteDescriptor() =
4406 default;
4407 IndexedDBBackingStore::Transaction::WriteDescriptor&
4408 IndexedDBBackingStore::Transaction::WriteDescriptor::
4409 operator=(const WriteDescriptor& other) = default;
cmumford 2015/02/17 16:34:50 Space before } // namespace
Daniel Bratell 2015/02/18 13:55:44 Done.
4403 } // namespace content 4410 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698