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

Side by Side Diff: content/browser/download/base_file.h

Issue 7388002: Move dependencies of download\base_file from chrome to content. These are all trivial file moves. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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/common/win_safe_util.cc ('k') | content/browser/download/base_file.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) 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 #ifndef CONTENT_BROWSER_DOWNLOAD_BASE_FILE_H_ 5 #ifndef CONTENT_BROWSER_DOWNLOAD_BASE_FILE_H_
6 #define CONTENT_BROWSER_DOWNLOAD_BASE_FILE_H_ 6 #define CONTENT_BROWSER_DOWNLOAD_BASE_FILE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/file_path.h" 11 #include "base/file_path.h"
12 #include "base/memory/linked_ptr.h" 12 #include "base/memory/linked_ptr.h"
13 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
14 #include "chrome/browser/power_save_blocker.h" 14 #include "content/browser/power_save_blocker.h"
15 #include "googleurl/src/gurl.h" 15 #include "googleurl/src/gurl.h"
16 16
17 namespace crypto { 17 namespace crypto {
18 class SecureHash; 18 class SecureHash;
19 } 19 }
20 namespace net { 20 namespace net {
21 class FileStream; 21 class FileStream;
22 } 22 }
23 23
24 // File being downloaded and saved to disk. This is a base class 24 // File being downloaded and saved to disk. This is a base class
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 unsigned char sha256_hash_[kSha256HashLen]; 99 unsigned char sha256_hash_[kSha256HashLen];
100 100
101 // Indicates that this class no longer owns the associated file, and so 101 // Indicates that this class no longer owns the associated file, and so
102 // won't delete it on destruction. 102 // won't delete it on destruction.
103 bool detached_; 103 bool detached_;
104 104
105 DISALLOW_COPY_AND_ASSIGN(BaseFile); 105 DISALLOW_COPY_AND_ASSIGN(BaseFile);
106 }; 106 };
107 107
108 #endif // CONTENT_BROWSER_DOWNLOAD_BASE_FILE_H_ 108 #endif // CONTENT_BROWSER_DOWNLOAD_BASE_FILE_H_
OLDNEW
« no previous file with comments | « chrome/common/win_safe_util.cc ('k') | content/browser/download/base_file.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698