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

Side by Side Diff: storage/browser/fileapi/quota/open_file_handle.cc

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 "webkit/browser/fileapi/quota/open_file_handle.h" 5 #include "storage/browser/fileapi/quota/open_file_handle.h"
6 6
7 #include "webkit/browser/fileapi/quota/open_file_handle_context.h" 7 #include "storage/browser/fileapi/quota/open_file_handle_context.h"
8 #include "webkit/browser/fileapi/quota/quota_reservation.h" 8 #include "storage/browser/fileapi/quota/quota_reservation.h"
9 9
10 namespace fileapi { 10 namespace storage {
11 11
12 OpenFileHandle::~OpenFileHandle() { 12 OpenFileHandle::~OpenFileHandle() {
13 DCHECK(sequence_checker_.CalledOnValidSequencedThread()); 13 DCHECK(sequence_checker_.CalledOnValidSequencedThread());
14 } 14 }
15 15
16 void OpenFileHandle::UpdateMaxWrittenOffset(int64 offset) { 16 void OpenFileHandle::UpdateMaxWrittenOffset(int64 offset) {
17 DCHECK(sequence_checker_.CalledOnValidSequencedThread()); 17 DCHECK(sequence_checker_.CalledOnValidSequencedThread());
18 18
19 int64 growth = context_->UpdateMaxWrittenOffset(offset); 19 int64 growth = context_->UpdateMaxWrittenOffset(offset);
20 if (growth > 0) 20 if (growth > 0)
(...skipping 19 matching lines...) Expand all
40 return context_->GetMaxWrittenOffset(); 40 return context_->GetMaxWrittenOffset();
41 } 41 }
42 42
43 const base::FilePath& OpenFileHandle::platform_path() const { 43 const base::FilePath& OpenFileHandle::platform_path() const {
44 DCHECK(sequence_checker_.CalledOnValidSequencedThread()); 44 DCHECK(sequence_checker_.CalledOnValidSequencedThread());
45 return context_->platform_path(); 45 return context_->platform_path();
46 } 46 }
47 47
48 OpenFileHandle::OpenFileHandle(QuotaReservation* reservation, 48 OpenFileHandle::OpenFileHandle(QuotaReservation* reservation,
49 OpenFileHandleContext* context) 49 OpenFileHandleContext* context)
50 : reservation_(reservation), 50 : reservation_(reservation), context_(context) {
51 context_(context) {
52 DCHECK(sequence_checker_.CalledOnValidSequencedThread()); 51 DCHECK(sequence_checker_.CalledOnValidSequencedThread());
53 } 52 }
54 53
55 } // namespace fileapi 54 } // namespace storage
OLDNEW
« no previous file with comments | « storage/browser/fileapi/quota/open_file_handle.h ('k') | storage/browser/fileapi/quota/open_file_handle_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698