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

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

Issue 13322003: Update the remaining references to sys_string_conversions.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 "webkit/blob/blob_data.h" 5 #include "webkit/blob/blob_data.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/sys_string_conversions.h" 8 #include "base/strings/sys_string_conversions.h"
9 #include "base/time.h" 9 #include "base/time.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
11 11
12 namespace webkit_blob { 12 namespace webkit_blob {
13 13
14 BlobData::BlobData() {} 14 BlobData::BlobData() {}
15 15
16 BlobData::~BlobData() {} 16 BlobData::~BlobData() {}
17 17
18 void BlobData::AppendData(const char* data, size_t length) { 18 void BlobData::AppendData(const char* data, size_t length) {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 int64 memory = 0; 50 int64 memory = 0;
51 for (std::vector<Item>::const_iterator iter = items_.begin(); 51 for (std::vector<Item>::const_iterator iter = items_.begin();
52 iter != items_.end(); ++iter) { 52 iter != items_.end(); ++iter) {
53 if (iter->type() == Item::TYPE_BYTES) 53 if (iter->type() == Item::TYPE_BYTES)
54 memory += iter->length(); 54 memory += iter->length();
55 } 55 }
56 return memory; 56 return memory;
57 } 57 }
58 58
59 } // namespace webkit_blob 59 } // namespace webkit_blob
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698