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

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

Issue 16533: Convert download manager to FilePath. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 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 | « chrome/browser/download/download_util.cc ('k') | chrome/browser/download/save_package.cc » ('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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 "chrome/browser/download/save_file.h" 5 #include "chrome/browser/download/save_file.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/file_util.h" 8 #include "base/file_util.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 bool SaveFile::Open(const char* open_mode) { 94 bool SaveFile::Open(const char* open_mode) {
95 DCHECK(!full_path_.empty()); 95 DCHECK(!full_path_.empty());
96 file_ = file_util::OpenFile(full_path_, open_mode); 96 file_ = file_util::OpenFile(full_path_, open_mode);
97 if (!file_) { 97 if (!file_) {
98 return false; 98 return false;
99 } 99 }
100 #if defined(OS_WIN) 100 #if defined(OS_WIN)
101 // Sets the zone to tell Windows that this file comes from the Internet. 101 // Sets the zone to tell Windows that this file comes from the Internet.
102 // We ignore the return value because a failure is not fatal. 102 // We ignore the return value because a failure is not fatal.
103 // TODO(port): Similarly mark on Mac. 103 // TODO(port): Similarly mark on Mac.
104 win_util::SetInternetZoneIdentifier(full_path_); 104 win_util::SetInternetZoneIdentifier(FilePath::FromWStringHack(full_path_));
105 #endif 105 #endif
106 return true; 106 return true;
107 } 107 }
108 108
OLDNEW
« no previous file with comments | « chrome/browser/download/download_util.cc ('k') | chrome/browser/download/save_package.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698