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

Side by Side Diff: webkit/common/blob/blob_data.cc

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build 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
« no previous file with comments | « webkit/common/blob/blob_data.h ('k') | webkit/common/blob/scoped_file.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "webkit/common/blob/blob_data.h" 5 #include "webkit/common/blob/blob_data.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/strings/sys_string_conversions.h" 8 #include "base/strings/sys_string_conversions.h"
9 #include "base/strings/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 #include "base/time/time.h" 10 #include "base/time/time.h"
11 11
12 namespace webkit_blob { 12 namespace storage {
13 13
14 BlobData::BlobData() {} 14 BlobData::BlobData() {}
15 BlobData::BlobData(const std::string& uuid) 15 BlobData::BlobData(const std::string& uuid)
16 : uuid_(uuid) { 16 : uuid_(uuid) {
17 } 17 }
18 18
19 BlobData::~BlobData() {} 19 BlobData::~BlobData() {}
20 20
21 void BlobData::AppendData(const char* data, size_t length) { 21 void BlobData::AppendData(const char* data, size_t length) {
22 DCHECK(length > 0); 22 DCHECK(length > 0);
(...skipping 30 matching lines...) Expand all
53 int64 BlobData::GetMemoryUsage() const { 53 int64 BlobData::GetMemoryUsage() const {
54 int64 memory = 0; 54 int64 memory = 0;
55 for (std::vector<Item>::const_iterator iter = items_.begin(); 55 for (std::vector<Item>::const_iterator iter = items_.begin();
56 iter != items_.end(); ++iter) { 56 iter != items_.end(); ++iter) {
57 if (iter->type() == Item::TYPE_BYTES) 57 if (iter->type() == Item::TYPE_BYTES)
58 memory += iter->length(); 58 memory += iter->length();
59 } 59 }
60 return memory; 60 return memory;
61 } 61 }
62 62
63 } // namespace webkit_blob 63 } // namespace storage
OLDNEW
« no previous file with comments | « webkit/common/blob/blob_data.h ('k') | webkit/common/blob/scoped_file.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698