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

Side by Side Diff: content/browser/download/save_file.cc

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 12 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
« no previous file with comments | « content/browser/download/save_file.h ('k') | content/browser/download/save_file_manager.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 "content/browser/download/save_file.h" 5 #include "content/browser/download/save_file.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "content/public/browser/browser_thread.h" 8 #include "content/public/browser/browser_thread.h"
9 9
10 namespace content { 10 namespace content {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 } 65 }
66 66
67 base::FilePath SaveFile::FullPath() const { 67 base::FilePath SaveFile::FullPath() const {
68 return file_.full_path(); 68 return file_.full_path();
69 } 69 }
70 70
71 bool SaveFile::InProgress() const { 71 bool SaveFile::InProgress() const {
72 return file_.in_progress(); 72 return file_.in_progress();
73 } 73 }
74 74
75 int64 SaveFile::BytesSoFar() const { 75 int64_t SaveFile::BytesSoFar() const {
76 return file_.bytes_so_far(); 76 return file_.bytes_so_far();
77 } 77 }
78 78
79 bool SaveFile::GetHash(std::string* hash) { 79 bool SaveFile::GetHash(std::string* hash) {
80 return file_.GetHash(hash); 80 return file_.GetHash(hash);
81 } 81 }
82 82
83 std::string SaveFile::DebugString() const { 83 std::string SaveFile::DebugString() const {
84 return file_.DebugString(); 84 return file_.DebugString();
85 } 85 }
86 86
87 } // namespace content 87 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/download/save_file.h ('k') | content/browser/download/save_file_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698