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

Side by Side Diff: webkit/fileapi/file_system_operation_context.cc

Issue 7215027: Coverity: Initialize member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/fileapi/file_system_operation_context.h" 5 #include "webkit/fileapi/file_system_operation_context.h"
6 6
7 #include "webkit/fileapi/file_system_context.h" 7 #include "webkit/fileapi/file_system_context.h"
8 #include "webkit/fileapi/file_system_util.h" 8 #include "webkit/fileapi/file_system_util.h"
9 9
10 namespace fileapi { 10 namespace fileapi {
11 11
12 FileSystemOperationContext::FileSystemOperationContext( 12 FileSystemOperationContext::FileSystemOperationContext(
13 FileSystemContext* context, 13 FileSystemContext* context,
14 FileSystemFileUtil* file_system_file_util) 14 FileSystemFileUtil* file_system_file_util)
15 : file_system_context_(context), 15 : file_system_context_(context),
16 src_file_system_file_util_(file_system_file_util), 16 src_file_system_file_util_(file_system_file_util),
17 dest_file_system_file_util_(file_system_file_util), 17 dest_file_system_file_util_(file_system_file_util),
18 src_type_(kFileSystemTypeUnknown), 18 src_type_(kFileSystemTypeUnknown),
19 dest_type_(kFileSystemTypeUnknown) { 19 dest_type_(kFileSystemTypeUnknown),
20 allowed_bytes_growth_(0) {
20 } 21 }
21 22
22 FileSystemOperationContext::~FileSystemOperationContext() { 23 FileSystemOperationContext::~FileSystemOperationContext() {
23 } 24 }
24 25
25 } // namespace fileapi 26 } // namespace fileapi
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698