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

Side by Side Diff: webkit/common/base/data_element.cc

Issue 16189015: [OBSOLETE] Slogging webkit_base out of existence. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 6 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/base/data_element.h ('k') | webkit/common/base/file_path_string_conversions.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/base/data_element.h" 5 #include "webkit/common/base/data_element.h"
6 6
7 namespace webkit_base { 7 namespace webkit_base {
8 8
9 DataElement::DataElement() 9 DataElement::DataElement()
10 : type_(TYPE_UNKNOWN), 10 : type_(TYPE_UNKNOWN),
11 bytes_(NULL), 11 bytes_(NULL),
12 offset_(0), 12 offset_(0),
13 length_(kuint64max) { 13 length_(kuint64max) {
14 } 14 }
15 15
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 uint64 offset, uint64 length, 51 uint64 offset, uint64 length,
52 const base::Time& expected_modification_time) { 52 const base::Time& expected_modification_time) {
53 type_ = TYPE_FILE_FILESYSTEM; 53 type_ = TYPE_FILE_FILESYSTEM;
54 filesystem_url_ = filesystem_url; 54 filesystem_url_ = filesystem_url;
55 offset_ = offset; 55 offset_ = offset;
56 length_ = length; 56 length_ = length;
57 expected_modification_time_ = expected_modification_time; 57 expected_modification_time_ = expected_modification_time;
58 } 58 }
59 59
60 } // webkit_base 60 } // webkit_base
OLDNEW
« no previous file with comments | « webkit/common/base/data_element.h ('k') | webkit/common/base/file_path_string_conversions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698