OLD | NEW |
---|---|
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 #ifndef CONTENT_BROWSER_DOWNLOAD_MHTML_GENERATION_MANAGER_H_ | 5 #ifndef CONTENT_BROWSER_DOWNLOAD_MHTML_GENERATION_MANAGER_H_ |
6 #define CONTENT_BROWSER_DOWNLOAD_MHTML_GENERATION_MANAGER_H_ | 6 #define CONTENT_BROWSER_DOWNLOAD_MHTML_GENERATION_MANAGER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | |
Randy Smith (Not in Mondays)
2015/12/10 23:07:55
Ok, I'll bite. I don't see any use of std::string
lukasza
2015/12/11 00:29:03
I don't know how that happened :-/
Removed / don
Łukasz Anforowicz
2015/12/14 18:08:42
Ah, I think I need this include in the next CL and
| |
9 | 10 |
10 #include "base/files/file.h" | 11 #include "base/files/file.h" |
11 #include "base/memory/singleton.h" | 12 #include "base/memory/singleton.h" |
12 #include "base/process/process.h" | 13 #include "base/process/process.h" |
13 #include "ipc/ipc_platform_file.h" | 14 #include "ipc/ipc_platform_file.h" |
14 | 15 |
15 namespace base { | 16 namespace base { |
16 class FilePath; | 17 class FilePath; |
17 } | 18 } |
18 | 19 |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
76 IDToJobMap id_to_job_; | 77 IDToJobMap id_to_job_; |
77 | 78 |
78 int next_job_id_; | 79 int next_job_id_; |
79 | 80 |
80 DISALLOW_COPY_AND_ASSIGN(MHTMLGenerationManager); | 81 DISALLOW_COPY_AND_ASSIGN(MHTMLGenerationManager); |
81 }; | 82 }; |
82 | 83 |
83 } // namespace content | 84 } // namespace content |
84 | 85 |
85 #endif // CONTENT_BROWSER_DOWNLOAD_MHTML_GENERATION_MANAGER_H_ | 86 #endif // CONTENT_BROWSER_DOWNLOAD_MHTML_GENERATION_MANAGER_H_ |
OLD | NEW |